Using MyEclipse 9.2M
Install Details (OS Is reported as Vista, it’s actually Windows 7 64Bit)
=====================================================================
*** Date:
Wednesday, February 2, 2011 4:35:04 PM EST
** System properties:
OS=WindowsVista
OS version=6.1.0
Java version=1.6.0_13
*** MyEclipse details:
MyEclipse Enterprise Workbench
Version: 9.0M2
Build id: 9.0M2-20110121
*** Eclipse details:
MyEclipse Enterprise Workbench
Version: 9.0M2
Build id: 9.0M2-20110121
Eclipse startup command=-os
win32
-ws
win32
-arch
x86
-showsplash
-launcher
C:\Development\MyEclipse 9.0m2\MyEclipse 9.0 M2\myeclipse.exe
-name
Myeclipse
–launcher.library
C:\Development\MyEclipse 9.0m2\MyEclipse 9.0 M2\../Common/plugins/org.eclipse.equinox.launcher.i18n.win32.win32.x86_3.2.0.v201012131400\eclipse_3210.dll
-startup
C:\Development\MyEclipse 9.0m2\MyEclipse 9.0 M2\../Common/plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
-install
C:\Development\MyEclipse 9.0m2\MyEclipse 9.0 M2
-configuration
C:\Development\MyEclipse 9.0m2\MyEclipse 9.0 M2\configuration
-vm
C:\Development\MyEclipse 9.0m2\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\bin\client\jvm.dll
=======================================================================
Issue:
JSF 2.0 web project. Using MyEclipse’s default xhtml templates and the following tags (probably more) are not being recognized:
<h:head>
<h:body>
<h:outputStylesheet ….
======================================================================
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”
xmlns:h=”http://java.sun.com/jsf/html”
xmlns:ui=”http://java.sun.com/jsf/facelets”>
<h:head>
<title> <ui:insert name=”windowTitle”>
#{msgs.windowTitle}
</ui:insert> </title>
</h:head>
<h:body>
<h:outputStylesheet library=”css” name=”styles.css” target=”head” />
<ui:insert name=”heading” />
<div class=”wizardPanel”>
<div class=”subheading”>
<ui:insert name=”subheading” />
</div>
<div class=”work”>
<ui:insert name=”work” />
</div>
<div class=”controls”>
<ui:insert name=”controls” />
</div>
</div>
</h:body>
</html>
****************************** Example Page ***********************************