• Type: New Feature
    • Resolution: Fixed
    • Priority: Major
    • 1.0.3
    • Affects Version/s: 1.0.2
    • Component/s: Teeda Core
    • None

      org.seasar.teeda.core.taglib.core.ViewTagを

      ViewTag
          public int doStartTag() throws JspException {
              final int rc = super.doStartTag();
              final FacesContext context = FacesContext.getCurrentInstance();
              AssertionUtil.assertNotNull("FacesContext", context);
              final String encoding = PageContextUtil
                      .getCharacterEncoding(pageContext);
              pageContext.getResponse().setLocale(context.getViewRoot().getLocale());
              final String acceptContentTypes = WebAppUtil.getAcceptHeader(context);
      // >> 追加
              if( acceptContentTypes != null)
              {
      // <<追加
              final String contentType = ContentTypeUtil
                      .getContentType(acceptContentTypes);
              pageContext.getResponse().setContentType(
                      contentType + "; charset=" + encoding);
      // >> 追加
              }
      // <<追加
      

      とすべきでは、ないでしょうか?
      Acceptが指定されなかった場合は、JSPにお任せし、
      Acceptが指定された場合は、Content-Typeを設定すべきと考えますが、
      どうでしょうか?

          [TEEDA-211] Content-Typeの設定の制御を変更する([Seasar-user:5567][S2JSF]xhmlについて

          yone added a comment -

          対応しました。
          Content-typeの判定方法を以下のように若干見直ししました。

          ContentTypeUtil.java
              public static boolean isHtmlContentType(String type) {
                  return type.indexOf(JsfConstants.HTML_CONTENT_TYPE) != -1
                          || type.equals(JsfConstants.ANY_CONTENT_TYPE);
              }
          
              public static boolean isXmlContentType(String type) {
                  return type.indexOf(JsfConstants.XHTML_CONTENT_TYPE) != -1
                          || type.indexOf(JsfConstants.APPLICATION_XML_CONTENT_TYPE) != -1
                          || type.indexOf(JsfConstants.TEXT_XML_CONTENT_TYPE) != -1;
              }
          

          yone added a comment - 対応しました。 Content-typeの判定方法を以下のように若干見直ししました。 ContentTypeUtil.java public static boolean isHtmlContentType( String type) { return type.indexOf(JsfConstants.HTML_CONTENT_TYPE) != -1 || type.equals(JsfConstants.ANY_CONTENT_TYPE); } public static boolean isXmlContentType( String type) { return type.indexOf(JsfConstants.XHTML_CONTENT_TYPE) != -1 || type.indexOf(JsfConstants.APPLICATION_XML_CONTENT_TYPE) != -1 || type.indexOf(JsfConstants.TEXT_XML_CONTENT_TYPE) != -1; }

            Assignee:
            yone
            Reporter:
            yone
            Votes:
            0 Vote for this issue
            Watchers:
            Start watching this issue

              Created:
              Updated:
              Resolved: