Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 90158 invoked from network); 30 Aug 2007 17:02:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 30 Aug 2007 17:02:58 -0000 Received: (qmail 73409 invoked by uid 500); 30 Aug 2007 17:02:53 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 73396 invoked by uid 500); 30 Aug 2007 17:02:53 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 73387 invoked by uid 99); 30 Aug 2007 17:02:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Aug 2007 10:02:53 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Aug 2007 17:03:57 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id D476671420D for ; Thu, 30 Aug 2007 10:02:34 -0700 (PDT) Message-ID: <27068207.1188493354867.JavaMail.jira@brutus> Date: Thu, 30 Aug 2007 10:02:34 -0700 (PDT) From: "Vasily Zakharov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Commented: (HARMONY-4696) [classlib][swing][html] JEditorPane doesn't recognize HTML by file name In-Reply-To: <5417035.1188398010806.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-4696?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12523882 ] Vasily Zakharov commented on HARMONY-4696: ------------------------------------------ Simple black box testing of RI shows the following results for 'new URL("file:fileName").openConnection().getContentType()' and 'new JEditorPane("file:fileName").getEditorKit().getContentType()' respectively: If file is named *.html, regardless of content: text/html, text/html If file is named *.rtf, regardless of content: application/rtf, text/rtf If file is named *.txt, regardless of content: text/plain, text/plain If file is named differently, but contains HTML code: text/html, text/html Otherwise: content/unknown, text/plain In other words, it means RI implementation of JEditorPane() fully relies upon URLConnection.getContentType() for determining content type, and just converts application/rtf to text/rtf and content/unknown to text/plain. > [classlib][swing][html] JEditorPane doesn't recognize HTML by file name > ----------------------------------------------------------------------- > > Key: HARMONY-4696 > URL: https://issues.apache.org/jira/browse/HARMONY-4696 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Vasily Zakharov > Priority: Minor > Attachments: Harmony.jpg, RI.jpg > > > The following simple test demonstrates the problem: > import javax.swing.JFrame; > import javax.swing.JEditorPane; > public class Test { > public static void main(String argv[]) { > try { > JFrame frame = new JFrame(); > frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); > frame.add(new JEditorPane("file:test.html")); > frame.setSize(150, 100); > frame.setVisible(true); > } catch (Exception e) { > e.printStackTrace(System.out); > } > } > } > test.html: > normal italic > test.html contains HTML code not clearly detectable as HTML. However, this code is contained in file having .html extension, and it's enough for RI to use HTML renderer. Harmony doesn't do it. The attached screenshots demonstrate the results on RI and Harmony. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.