JBoss Tools SVN: r5490 - trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test.
by jbosstools-commits@lists.jboss.org
Author: sdzmitrovich
Date: 2008-01-03 08:44:30 -0500 (Thu, 03 Jan 2008)
New Revision: 5490
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfJbideTest.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-1467
was created test for this bug
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfJbideTest.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfJbideTest.java 2008-01-03 13:40:47 UTC (rev 5489)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfJbideTest.java 2008-01-03 13:44:30 UTC (rev 5490)
@@ -10,15 +10,32 @@
******************************************************************************/
package org.jboss.tools.jsf.vpe.jsf.test;
+import java.util.ArrayList;
+import java.util.List;
+
import junit.framework.TestCase;
+import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.ILogListener;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Platform;
+import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.PartInitException;
+import org.eclipse.ui.PlatformUI;
+import org.eclipse.ui.part.FileEditorInput;
+import org.jboss.tools.jst.jsp.jspeditor.JSPMultiPageEditor;
+import org.jboss.tools.vpe.editor.VpeController;
+import org.jboss.tools.vpe.editor.VpeEditorPart;
+import org.jboss.tools.vpe.editor.util.HTML;
+import org.jboss.tools.vpe.xulrunner.editor.XulRunnerEditor;
+import org.mozilla.interfaces.nsIDOMDocument;
+import org.mozilla.interfaces.nsIDOMElement;
+import org.mozilla.interfaces.nsIDOMNamedNodeMap;
+import org.mozilla.interfaces.nsIDOMNode;
+import org.mozilla.interfaces.nsIDOMNodeList;
/**
- * Class for testing all jsf components
+ * Class for testing all jsf bugs
*
* @author sdzmitrovich
*
@@ -26,6 +43,9 @@
public class JsfJbideTest extends TestCase implements ILogListener {
private final static String EDITOR_ID = "org.jboss.tools.jst.jsp.jspeditor.JSPTextEditor"; // $NON-NLS-1$
+ // type of input tag
+ private static final String ATTR_TYPE_VALUE = "radio";
+
// $NON-NLS-1$
// check warning log
@@ -48,6 +68,10 @@
super.setUp();
Platform.addLogListener(this);
+
+ TestJsfUtil.waitForJobs();
+ PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage()
+ .closeAllEditors(true);
}
/**
@@ -60,42 +84,149 @@
protected void tearDown() throws Exception {
super.tearDown();
Platform.removeLogListener(this);
+
+ TestJsfUtil.waitForJobs();
+
+ PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage()
+ .closeAllEditors(true);
}
/*
* JBIDE's test cases
*/
+ /**
+ * test for http://jira.jboss.com/jira/browse/JBIDE-1467
+ *
+ * REQUIREMENT :test page must have only one <h:selectOneRadio > tag
+ *
+ * test check that all "radio" elements ( of xulRunner DOMDocument ) have
+ * equal "name" attributes
+ */
public void testJBIDE_1467() throws PartInitException, Throwable {
+ // path to test page
String path = "JBIDE/JBIDE-1467.jsp";
-
- }
-
- /*private void performTestForJsfComponent(String componentPage)
- throws PartInitException, Throwable {
- TestJsfComponentsUtil.waitForJobs();
-
+ // wait
+ TestJsfUtil.waitForJobs();
+ // set exception
exception = null;
- IPath componentPath = TestJsfComponentsUtil
- .getComponentPath(componentPage);
- IFile file = ResourcesPlugin.getWorkspace().getRoot().getFile(
- componentPath);
+ // get test page path
+ IFile file = (IFile) TestJsfUtil.getComponentPath(path);
+
IEditorInput input = new FileEditorInput(file);
- PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage()
+ // get editor
+ JSPMultiPageEditor part = (JSPMultiPageEditor) PlatformUI
+ .getWorkbench().getActiveWorkbenchWindow().getActivePage()
.openEditor(input, EDITOR_ID, true);
- TestJsfComponentsUtil.waitForJobs();
- TestJsfComponentsUtil.delay(3000);
- PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage()
- .closeAllEditors(true);
+ // wait for jobs
+ TestJsfUtil.waitForJobs();
+ // wait full initialization of vpe
+ TestJsfUtil.delay(3000);
+ VpeEditorPart visualEditor = (VpeEditorPart) part.getVisualEditor();
+ VpeController vpeController = visualEditor.getController();
+
+ // get xulRunner editor
+ XulRunnerEditor xulRunnerEditor = vpeController.getXulRunnerEditor();
+
+ // get dom document
+ nsIDOMDocument document = xulRunnerEditor.getDOMDocument();
+ nsIDOMElement element = document.getDocumentElement();
+
+ if (element != null) {
+
+ // get root node
+ nsIDOMNode node = (nsIDOMNode) element
+ .queryInterface(nsIDOMNode.NS_IDOMNODE_IID);
+
+ List<nsIDOMNode> elements = new ArrayList<nsIDOMNode>();
+
+ // find "input" elements
+ findElementsByName(node, elements, HTML.TAG_INPUT);
+
+ // check that "radio" elements have equal names
+ // (size of list of names == 1 )
+ assertEquals(getRadioNames(elements).size(), 1);
+
+ }
+
+ // check exception
if (exception != null) {
throw exception;
}
- }*/
+ }
+
+ /**
+ * find elements by name
+ *
+ * @param node -
+ * current node
+ * @param elements -
+ * list of found elements
+ * @param name -
+ * name element
+ */
+ void findElementsByName(nsIDOMNode node, List<nsIDOMNode> elements,
+ String name) {
+
+ // get children
+ nsIDOMNodeList children = node.getChildNodes();
+ for (int i = 0; i < children.getLength(); i++) {
+ nsIDOMNode child = children.item(i);
+
+ // if current child is required then add his to list
+ if (name.equalsIgnoreCase((child.getNodeName()))) {
+
+ elements.add(child);
+ return;
+ }
+ // if current child is not required
+ findElementsByName(child, elements, name);
+
+ }
+
+ }
+
+ private List<String> getRadioNames(List<nsIDOMNode> elements) {
+
+ // list of "name" of "radio" elements
+ List<String> radioNames = new ArrayList<String>();
+
+ for (nsIDOMNode element : elements) {
+ // attributes
+ nsIDOMNamedNodeMap attributes = element.getAttributes();
+
+ if (null != attributes) {
+ // get type of element
+ nsIDOMNode type = attributes.getNamedItem(HTML.ATTR_TYPE);
+
+ // if type is "radio"
+ if ((null != type)
+ && (ATTR_TYPE_VALUE.equalsIgnoreCase(type
+ .getNodeValue()))) {
+
+ // get "name" attribute
+ nsIDOMNode name = attributes.getNamedItem(HTML.ATTR_NAME);
+
+ // check for null
+ assertNotNull(name);
+
+ // if name is unique
+ if (!radioNames.contains(name.getNodeValue()))
+ radioNames.add(name.getNodeValue());
+
+ }
+ }
+ }
+
+ return radioNames;
+
+ }
+
public void logging(IStatus status, String plugin) {
switch (status.getSeverity()) {
case IStatus.ERROR:
17 years
JBoss Tools SVN: r5489 - in trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages: components and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: sdzmitrovich
Date: 2008-01-03 08:40:47 -0500 (Thu, 03 Jan 2008)
New Revision: 5489
Added:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/actionListener.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/attribute.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/commandButton.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/commandLink.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/convertDateTime.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/convertNumber.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/converter.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/dataTable.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/facet.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/form.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/graphicImage.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/inputHidden.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/inputSecret.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/inputText.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/inputTextArea.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/loadBundle.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/message.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/messages.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/outputFormat.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/outputLabel.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/outputLink.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/outputText.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/panelGrid.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/panelGroup.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/param.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/phaseListener.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectBooleanCheckbox.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectItem.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectItems.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectManyCheckbox.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectManyListbox.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectManyMenu.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectOneListbox.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectOneMenu.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectOneRadio.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/setPropertyActionListener.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/subview.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/validateDoubleRange.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/validateLength.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/validateLongRange.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/validator.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/valueChangeListener.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/verbatim.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/view.jsp
Log:
update jsf junit
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/actionListener.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/actionListener.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/actionListener.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,18 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="actionListener" /></h1>
+ <h:form id="form">
+ <h:commandButton value="button">
+ <f:actionListener type="someType" />
+ </h:commandButton>
+ </h:form>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/attribute.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/attribute.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/attribute.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,18 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="attribute" /></h1>
+ <h:form id="form">
+ <h:commandButton value="button">
+ <f:attribute name="attributeName" value="attributeValue" />
+ </h:commandButton>
+ </h:form>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/commandButton.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/commandButton.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/commandButton.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,19 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="commandButton" /></h1>
+
+ <h:form id="commandButtonForm">
+
+ <h:commandButton value="commandButton" />
+
+ </h:form>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/commandLink.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/commandLink.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/commandLink.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,19 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="commandLink" /></h1>
+
+ <h:form id="commandLinkForm">
+
+ <h:commandLink value="commandLink" />
+
+ </h:form>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/convertDateTime.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/convertDateTime.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/convertDateTime.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,16 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="convertDateTime" /></h1>
+ <h:inputText value="value">
+ <f:convertDateTime pattern="MM/yyyy" />
+ </h:inputText>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/convertNumber.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/convertNumber.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/convertNumber.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,16 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="convertNumber" /></h1>
+ <h:inputText value="value">
+ <f:convertNumber minFractionDigits="2"/>
+ </h:inputText>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/converter.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/converter.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/converter.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,16 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="converter" /></h1>
+ <h:inputText value="value">
+ <f:converter converterId="someConverterId" />
+ </h:inputText>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/dataTable.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/dataTable.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/dataTable.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,50 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="dataTable" /></h1>
+
+ <h:dataTable value="data">
+
+ <h:column>
+ <f:facet name="header">
+ <h:outputText value="Last Name" />
+ </f:facet>
+
+
+ <h:outputText value="Dupont" />
+
+ <f:facet name="footer">
+ <h:outputText value="footer" />
+ </f:facet>
+
+ </h:column>
+
+
+
+
+ <h:column>
+ <f:facet name="header">
+ <h:outputText value="First Name" />
+ </f:facet>
+
+
+ <h:outputText value="William" />
+
+ <f:facet name="footer">
+ <h:outputText value="footer" />
+ </f:facet>
+
+
+ </h:column>
+
+ </h:dataTable>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/facet.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/facet.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/facet.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,42 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="facet" /></h1>
+ <h:dataTable value="data">
+
+ <h:column>
+ <f:facet name="header">
+ <h:outputText value="Last Name" />
+ </f:facet>
+
+
+ <h:outputText value="Dupont" />
+
+ <f:facet name="footer">
+ <h:outputText value="footer" />
+ </f:facet>
+
+ </h:column>
+
+ <h:column>
+ <f:facet name="header">
+ <h:outputText value="First Name" />
+ </f:facet>
+
+ <h:outputText value="William" />
+
+ <f:facet name="footer">
+ <h:outputText value="footer" />
+ </f:facet>
+
+ </h:column>
+ </h:dataTable>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/form.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/form.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/form.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,18 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="form" /></h1>
+
+ <h:form id="form">
+
+ </h:form>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/graphicImage.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/graphicImage.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/graphicImage.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,16 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="graphicImage" /></h1>
+
+ <h:graphicImage value="/img/image.jpeg"/>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/inputHidden.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/inputHidden.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/inputHidden.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,16 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="inputHidden" /></h1>
+
+ <h:inputHidden value="inputHidden"/>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/inputSecret.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/inputSecret.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/inputSecret.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,16 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="inputSecret" /></h1>
+
+ <h:inputSecret value="inputSecret"/>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/inputText.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/inputText.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/inputText.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,16 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="inputText" /></h1>
+
+ <h:inputText value="inputText"/>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/inputTextArea.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/inputTextArea.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/inputTextArea.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,16 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="inputTextArea" /></h1>
+
+ <h:inputTextarea value="inputTextArea"/>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/loadBundle.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/loadBundle.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/loadBundle.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,14 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="loadBundle" /></h1>
+ <f:loadBundle var="var" basename="someBaseName" />
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/message.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/message.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/message.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,18 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="message" /></h1>
+
+ <h:inputText required="true" id="name"/>
+
+ <h:message for="name" />
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/messages.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/messages.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/messages.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,17 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="messages" /></h1>
+
+ <h:messages style="color: red"/>
+ <h:inputText required="true" />
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/outputFormat.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/outputFormat.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/outputFormat.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,15 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="outputFormat" /></h1>
+
+ <h:outputFormat value="outputFormat" />
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/outputLabel.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/outputLabel.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/outputLabel.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,15 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="outputLabel" /></h1>
+
+ <h:outputLabel value="outputLabel" />
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/outputLink.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/outputLink.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/outputLink.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,17 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="outputLink" /></h1>
+
+ <h:outputLink value="www.exadel.com" >
+ <h:outputText value="outputLink"/>
+ </h:outputLink>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/outputText.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/outputText.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/outputText.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,15 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="outputText" /></h1>
+
+ <h:outputText value="outputText" />
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/panelGrid.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/panelGrid.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/panelGrid.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,24 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="panelGrid" /></h1>
+ <h:panelGrid columns="2" rowClasses="oddRows,evenRows">
+
+ <h:outputText value="column 1" />
+ <h:outputText value="column 2" />
+
+ <h:outputText value="1" />
+ <h:outputText value="2" />
+ <h:outputText value="3" />
+ <h:outputText value="4" />
+
+ </h:panelGrid>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/panelGroup.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/panelGroup.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/panelGroup.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,27 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="panelGroup" /></h1>
+ <h:panelGrid columns="2" >
+
+ <h:outputText value="column 1" />
+ <h:outputText value="column 2" />
+
+ <h:panelGroup>
+ <h:outputText value="1" />
+ <h:outputText value="2" />
+ </h:panelGroup>
+ <h:panelGroup>
+ <h:outputText value="3" />
+ <h:outputText value="4" />
+ </h:panelGroup>
+ </h:panelGrid>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/param.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/param.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/param.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,26 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="param" /></h1>
+
+ <h:form id="formId">
+
+ <h:commandLink id="linkId">
+
+ <h:outputText value="param" />
+
+ <f:param id="paramId" name="param" value="someParamValue" />
+
+ </h:commandLink>
+
+ </h:form>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/phaseListener.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/phaseListener.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/phaseListener.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,16 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="phaseListener" /></h1>
+
+ <f:phaseListener type="phaseListenerId"/>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectBooleanCheckbox.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectBooleanCheckbox.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectBooleanCheckbox.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,17 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="selectBooleanCheckbox" /></h1>
+
+ <h:outputText value="selectBooleanCheckbox:" />
+ <h:selectBooleanCheckbox value="false" />
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectItem.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectItem.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectItem.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,22 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="selecItem" /></h1>
+
+ <h:outputText value="selectitem:" />
+
+ <h:selectManyCheckbox value="someValue">
+ <f:selectItem itemLabel="check1" />
+ <f:selectItem itemLabel="check2" />
+ <f:selectItem itemLabel="check3" />
+ </h:selectManyCheckbox>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectItems.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectItems.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectItems.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,20 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="selecItems" /></h1>
+
+ <h:outputText value="selectitems:" />
+
+ <h:selectManyCheckbox value="someValue">
+ <f:selectItems value="someValue" />
+ </h:selectManyCheckbox>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectManyCheckbox.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectManyCheckbox.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectManyCheckbox.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,22 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="selectManyCheckbox" /></h1>
+
+ <h:outputText value="selectManyCheckbox:" />
+
+ <h:selectManyCheckbox value="someValue">
+ <f:selectItem itemLabel="check1" />
+ <f:selectItem itemLabel="check2" />
+ <f:selectItem itemLabel="check3" />
+ </h:selectManyCheckbox>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectManyListbox.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectManyListbox.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectManyListbox.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,21 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="selectManyListbox" /></h1>
+
+ <h:outputText value="selectManyListbox:" />
+
+ <h:selectManyListbox value="someValue">
+ <f:selectItem itemLabel="value1" itemValue="value1" />
+ <f:selectItem itemLabel="value2" itemValue="value2" />
+ </h:selectManyListbox>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectManyMenu.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectManyMenu.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectManyMenu.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,23 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="selectManyMenu" /></h1>
+
+ <h:outputText value="selectManyMenu:" />
+
+ <h:selectManyMenu value="someValue">
+ <f:selectItem itemLabel="value1" itemValue="value1" />
+ <f:selectItem itemLabel="value2" itemValue="value2" />
+ <f:selectItem itemLabel="value3" itemValue="value3" />
+ <f:selectItem itemLabel="value4" itemValue="value4" />
+ </h:selectManyMenu>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectOneListbox.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectOneListbox.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectOneListbox.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,22 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="selectOneListbox" /></h1>
+
+ <h:outputText value="selectOneListbox:" />
+
+ <h:selectOneListbox value="someValue" >
+ <f:selectItem itemLabel="value1" itemValue="value1" />
+ <f:selectItem itemLabel="value2" itemValue="value2" />
+ <f:selectItem itemLabel="value3" itemValue="value3" />
+ </h:selectOneListbox>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectOneMenu.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectOneMenu.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectOneMenu.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,23 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="selectOneMenu" /></h1>
+
+ <h:outputText value="selectOneMenu:" />
+
+ <h:selectOneMenu value="someValue">
+
+ <f:selectItem itemLabel="value1" itemValue="value1" />
+ <f:selectItem itemLabel="value2" itemValue="value2" />
+
+ </h:selectOneMenu>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectOneRadio.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectOneRadio.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/selectOneRadio.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,25 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="selectOneRadio" /></h1>
+
+ <h:outputText value="selectOneRadio:" />
+
+ <h:selectOneRadio>
+
+ <f:selectItem itemLabel="value1" />
+ <f:selectItem itemLabel="value2" />
+ <f:selectItem itemLabel="value3" />
+ <f:selectItem itemLabel="value4" />
+
+ </h:selectOneRadio>
+
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/setPropertyActionListener.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/setPropertyActionListener.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/setPropertyActionListener.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,18 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="setPropertyActionListener" /></h1>
+ <h:form>
+ <h:commandButton value="click">
+ <f:setPropertyActionListener target="#{myBean.currentPage}" value="1" />
+ </h:commandButton>
+ </h:form>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/subview.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/subview.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/subview.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,16 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="subview" /></h1>
+ <f:subview id="subviewId">
+ <h:outputText value="subview content" />
+ </f:subview>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/validateDoubleRange.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/validateDoubleRange.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/validateDoubleRange.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,18 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="validateDoubleRange" /></h1>
+ <h:form>
+ <h:inputText value="value">
+ <f:validateDoubleRange minimum="0" maximum="100" />
+ </h:inputText>
+ </h:form>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/validateLength.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/validateLength.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/validateLength.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,18 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="validateLength" /></h1>
+ <h:form>
+ <h:inputText value="value">
+ <f:validateLength minimum="10" maximum="100" />
+ </h:inputText>
+ </h:form>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/validateLongRange.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/validateLongRange.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/validateLongRange.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,18 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="validateLongRange" /></h1>
+ <h:form>
+ <h:inputText value="value">
+ <f:validateLongRange minimum="10" maximum="100" />
+ </h:inputText>
+ </h:form>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/validator.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/validator.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/validator.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,18 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="validator" /></h1>
+ <h:form>
+ <h:inputText value="value">
+ <f:validator validatorId="validatorId"/>
+ </h:inputText>
+ </h:form>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/valueChangeListener.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/valueChangeListener.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/valueChangeListener.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,18 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="valueChangeListener" /></h1>
+ <h:form>
+ <h:inputText value="value">
+ <f:valueChangeListener type="listener" />
+ </h:inputText>
+ </h:form>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/verbatim.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/verbatim.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/verbatim.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,25 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="verbatim" /></h1>
+ <f:verbatim>
+ <table width="50%">
+ <tr>
+ <td>1</td>
+ <td>2</td>
+ </tr>
+ <tr>
+ <td>3</td>
+ <td>4</td>
+ </tr>
+ </table>
+ </f:verbatim>
+</f:view>
+</body>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/view.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/view.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/components/view.jsp 2008-01-03 13:40:47 UTC (rev 5489)
@@ -0,0 +1,13 @@
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="view" /></h1>
+</f:view>
+</body>
+</html>
\ No newline at end of file
17 years
JBoss Tools SVN: r5488 - trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages.
by jbosstools-commits@lists.jboss.org
Author: sdzmitrovich
Date: 2008-01-03 08:39:45 -0500 (Thu, 03 Jan 2008)
New Revision: 5488
Removed:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/actionListener.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/attribute.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/commandButton.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/commandLink.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/convertDateTime.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/convertNumber.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/converter.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/dataTable.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/facet.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/form.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/graphicImage.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/inputHidden.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/inputSecret.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/inputText.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/inputTextArea.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/loadBundle.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/message.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/messages.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/outputFormat.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/outputLabel.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/outputLink.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/outputText.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/panelGrid.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/panelGroup.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/param.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/phaseListener.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectBooleanCheckbox.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectItem.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectItems.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectManyCheckbox.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectManyListbox.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectManyMenu.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectOneListbox.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectOneMenu.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectOneRadio.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/setPropertyActionListener.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/subview.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/validateDoubleRange.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/validateLength.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/validateLongRange.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/validator.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/valueChangeListener.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/verbatim.jsp
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/view.jsp
Log:
update jsf junit
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/actionListener.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/actionListener.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/actionListener.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,18 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="actionListener" /></h1>
- <h:form id="form">
- <h:commandButton value="button">
- <f:actionListener type="someType" />
- </h:commandButton>
- </h:form>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/attribute.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/attribute.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/attribute.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,18 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="attribute" /></h1>
- <h:form id="form">
- <h:commandButton value="button">
- <f:attribute name="attributeName" value="attributeValue" />
- </h:commandButton>
- </h:form>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/commandButton.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/commandButton.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/commandButton.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,19 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="commandButton" /></h1>
-
- <h:form id="commandButtonForm">
-
- <h:commandButton value="commandButton" />
-
- </h:form>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/commandLink.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/commandLink.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/commandLink.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,19 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="commandLink" /></h1>
-
- <h:form id="commandLinkForm">
-
- <h:commandLink value="commandLink" />
-
- </h:form>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/convertDateTime.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/convertDateTime.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/convertDateTime.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,16 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="convertDateTime" /></h1>
- <h:inputText value="value">
- <f:convertDateTime pattern="MM/yyyy" />
- </h:inputText>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/convertNumber.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/convertNumber.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/convertNumber.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,16 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="convertNumber" /></h1>
- <h:inputText value="value">
- <f:convertNumber minFractionDigits="2"/>
- </h:inputText>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/converter.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/converter.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/converter.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,16 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="converter" /></h1>
- <h:inputText value="value">
- <f:converter converterId="someConverterId" />
- </h:inputText>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/dataTable.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/dataTable.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/dataTable.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,50 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="dataTable" /></h1>
-
- <h:dataTable value="data">
-
- <h:column>
- <f:facet name="header">
- <h:outputText value="Last Name" />
- </f:facet>
-
-
- <h:outputText value="Dupont" />
-
- <f:facet name="footer">
- <h:outputText value="footer" />
- </f:facet>
-
- </h:column>
-
-
-
-
- <h:column>
- <f:facet name="header">
- <h:outputText value="First Name" />
- </f:facet>
-
-
- <h:outputText value="William" />
-
- <f:facet name="footer">
- <h:outputText value="footer" />
- </f:facet>
-
-
- </h:column>
-
- </h:dataTable>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/facet.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/facet.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/facet.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,42 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="facet" /></h1>
- <h:dataTable value="data">
-
- <h:column>
- <f:facet name="header">
- <h:outputText value="Last Name" />
- </f:facet>
-
-
- <h:outputText value="Dupont" />
-
- <f:facet name="footer">
- <h:outputText value="footer" />
- </f:facet>
-
- </h:column>
-
- <h:column>
- <f:facet name="header">
- <h:outputText value="First Name" />
- </f:facet>
-
- <h:outputText value="William" />
-
- <f:facet name="footer">
- <h:outputText value="footer" />
- </f:facet>
-
- </h:column>
- </h:dataTable>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/form.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/form.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/form.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,18 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="form" /></h1>
-
- <h:form id="form">
-
- </h:form>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/graphicImage.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/graphicImage.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/graphicImage.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,16 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="graphicImage" /></h1>
-
- <h:graphicImage value="/img/image.jpeg"/>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/inputHidden.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/inputHidden.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/inputHidden.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,16 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="inputHidden" /></h1>
-
- <h:inputHidden value="inputHidden"/>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/inputSecret.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/inputSecret.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/inputSecret.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,16 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="inputSecret" /></h1>
-
- <h:inputSecret value="inputSecret"/>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/inputText.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/inputText.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/inputText.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,16 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="inputText" /></h1>
-
- <h:inputText value="inputText"/>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/inputTextArea.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/inputTextArea.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/inputTextArea.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,16 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="inputTextArea" /></h1>
-
- <h:inputTextarea value="inputTextArea"/>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/loadBundle.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/loadBundle.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/loadBundle.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,14 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="loadBundle" /></h1>
- <f:loadBundle var="var" basename="someBaseName" />
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/message.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/message.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/message.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,18 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="message" /></h1>
-
- <h:inputText required="true" id="name"/>
-
- <h:message for="name" />
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/messages.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/messages.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/messages.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,17 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="messages" /></h1>
-
- <h:messages style="color: red"/>
- <h:inputText required="true" />
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/outputFormat.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/outputFormat.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/outputFormat.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,15 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="outputFormat" /></h1>
-
- <h:outputFormat value="outputFormat" />
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/outputLabel.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/outputLabel.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/outputLabel.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,15 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="outputLabel" /></h1>
-
- <h:outputLabel value="outputLabel" />
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/outputLink.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/outputLink.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/outputLink.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,17 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="outputLink" /></h1>
-
- <h:outputLink value="www.exadel.com" >
- <h:outputText value="outputLink"/>
- </h:outputLink>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/outputText.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/outputText.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/outputText.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,15 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="outputText" /></h1>
-
- <h:outputText value="outputText" />
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/panelGrid.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/panelGrid.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/panelGrid.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,24 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="panelGrid" /></h1>
- <h:panelGrid columns="2" rowClasses="oddRows,evenRows">
-
- <h:outputText value="column 1" />
- <h:outputText value="column 2" />
-
- <h:outputText value="1" />
- <h:outputText value="2" />
- <h:outputText value="3" />
- <h:outputText value="4" />
-
- </h:panelGrid>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/panelGroup.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/panelGroup.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/panelGroup.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,27 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="panelGroup" /></h1>
- <h:panelGrid columns="2" >
-
- <h:outputText value="column 1" />
- <h:outputText value="column 2" />
-
- <h:panelGroup>
- <h:outputText value="1" />
- <h:outputText value="2" />
- </h:panelGroup>
- <h:panelGroup>
- <h:outputText value="3" />
- <h:outputText value="4" />
- </h:panelGroup>
- </h:panelGrid>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/param.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/param.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/param.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,26 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="param" /></h1>
-
- <h:form id="formId">
-
- <h:commandLink id="linkId">
-
- <h:outputText value="param" />
-
- <f:param id="paramId" name="param" value="someParamValue" />
-
- </h:commandLink>
-
- </h:form>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/phaseListener.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/phaseListener.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/phaseListener.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,16 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="phaseListener" /></h1>
-
- <f:phaseListener type="phaseListenerId"/>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectBooleanCheckbox.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectBooleanCheckbox.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectBooleanCheckbox.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,17 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="selectBooleanCheckbox" /></h1>
-
- <h:outputText value="selectBooleanCheckbox:" />
- <h:selectBooleanCheckbox value="false" />
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectItem.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectItem.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectItem.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,22 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="selecItem" /></h1>
-
- <h:outputText value="selectitem:" />
-
- <h:selectManyCheckbox value="someValue">
- <f:selectItem itemLabel="check1" />
- <f:selectItem itemLabel="check2" />
- <f:selectItem itemLabel="check3" />
- </h:selectManyCheckbox>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectItems.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectItems.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectItems.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,20 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="selecItems" /></h1>
-
- <h:outputText value="selectitems:" />
-
- <h:selectManyCheckbox value="someValue">
- <f:selectItems value="someValue" />
- </h:selectManyCheckbox>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectManyCheckbox.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectManyCheckbox.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectManyCheckbox.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,22 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="selectManyCheckbox" /></h1>
-
- <h:outputText value="selectManyCheckbox:" />
-
- <h:selectManyCheckbox value="someValue">
- <f:selectItem itemLabel="check1" />
- <f:selectItem itemLabel="check2" />
- <f:selectItem itemLabel="check3" />
- </h:selectManyCheckbox>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectManyListbox.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectManyListbox.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectManyListbox.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,21 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="selectManyListbox" /></h1>
-
- <h:outputText value="selectManyListbox:" />
-
- <h:selectManyListbox value="someValue">
- <f:selectItem itemLabel="value1" itemValue="value1" />
- <f:selectItem itemLabel="value2" itemValue="value2" />
- </h:selectManyListbox>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectManyMenu.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectManyMenu.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectManyMenu.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,23 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="selectManyMenu" /></h1>
-
- <h:outputText value="selectManyMenu:" />
-
- <h:selectManyMenu value="someValue">
- <f:selectItem itemLabel="value1" itemValue="value1" />
- <f:selectItem itemLabel="value2" itemValue="value2" />
- <f:selectItem itemLabel="value3" itemValue="value3" />
- <f:selectItem itemLabel="value4" itemValue="value4" />
- </h:selectManyMenu>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectOneListbox.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectOneListbox.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectOneListbox.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,22 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="selectOneListbox" /></h1>
-
- <h:outputText value="selectOneListbox:" />
-
- <h:selectOneListbox value="someValue" >
- <f:selectItem itemLabel="value1" itemValue="value1" />
- <f:selectItem itemLabel="value2" itemValue="value2" />
- <f:selectItem itemLabel="value3" itemValue="value3" />
- </h:selectOneListbox>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectOneMenu.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectOneMenu.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectOneMenu.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,23 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="selectOneMenu" /></h1>
-
- <h:outputText value="selectOneMenu:" />
-
- <h:selectOneMenu value="someValue">
-
- <f:selectItem itemLabel="value1" itemValue="value1" />
- <f:selectItem itemLabel="value2" itemValue="value2" />
-
- </h:selectOneMenu>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectOneRadio.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectOneRadio.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/selectOneRadio.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,25 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="selectOneRadio" /></h1>
-
- <h:outputText value="selectOneRadio:" />
-
- <h:selectOneRadio>
-
- <f:selectItem itemLabel="value1" />
- <f:selectItem itemLabel="value2" />
- <f:selectItem itemLabel="value3" />
- <f:selectItem itemLabel="value4" />
-
- </h:selectOneRadio>
-
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/setPropertyActionListener.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/setPropertyActionListener.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/setPropertyActionListener.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,18 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="setPropertyActionListener" /></h1>
- <h:form>
- <h:commandButton value="click">
- <f:setPropertyActionListener target="#{myBean.currentPage}" value="1" />
- </h:commandButton>
- </h:form>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/subview.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/subview.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/subview.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,16 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="subview" /></h1>
- <f:subview id="subviewId">
- <h:outputText value="subview content" />
- </f:subview>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/validateDoubleRange.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/validateDoubleRange.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/validateDoubleRange.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,18 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="validateDoubleRange" /></h1>
- <h:form>
- <h:inputText value="value">
- <f:validateDoubleRange minimum="0" maximum="100" />
- </h:inputText>
- </h:form>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/validateLength.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/validateLength.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/validateLength.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,18 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="validateLength" /></h1>
- <h:form>
- <h:inputText value="value">
- <f:validateLength minimum="10" maximum="100" />
- </h:inputText>
- </h:form>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/validateLongRange.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/validateLongRange.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/validateLongRange.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,18 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="validateLongRange" /></h1>
- <h:form>
- <h:inputText value="value">
- <f:validateLongRange minimum="10" maximum="100" />
- </h:inputText>
- </h:form>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/validator.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/validator.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/validator.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,18 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="validator" /></h1>
- <h:form>
- <h:inputText value="value">
- <f:validator validatorId="validatorId"/>
- </h:inputText>
- </h:form>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/valueChangeListener.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/valueChangeListener.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/valueChangeListener.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,18 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="valueChangeListener" /></h1>
- <h:form>
- <h:inputText value="value">
- <f:valueChangeListener type="listener" />
- </h:inputText>
- </h:form>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/verbatim.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/verbatim.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/verbatim.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,25 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="verbatim" /></h1>
- <f:verbatim>
- <table width="50%">
- <tr>
- <td>1</td>
- <td>2</td>
- </tr>
- <tr>
- <td>3</td>
- <td>4</td>
- </tr>
- </table>
- </f:verbatim>
-</f:view>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/view.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/view.jsp 2008-01-03 12:41:58 UTC (rev 5487)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/view.jsp 2008-01-03 13:39:45 UTC (rev 5488)
@@ -1,13 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
-
-<html>
-<head>
-</head>
-<body>
-
-<f:view>
- <h1><h:outputText value="view" /></h1>
-</f:view>
-</body>
-</html>
\ No newline at end of file
17 years
JBoss Tools SVN: r5487 - trunk/hibernatetools/docs/reference/en/modules.
by jbosstools-commits@lists.jboss.org
Author: afedosik
Date: 2008-01-03 07:41:58 -0500 (Thu, 03 Jan 2008)
New Revision: 5487
Modified:
trunk/hibernatetools/docs/reference/en/modules/ant.xml
trunk/hibernatetools/docs/reference/en/modules/codegen.xml
trunk/hibernatetools/docs/reference/en/modules/codegenarchitecture.xml
trunk/hibernatetools/docs/reference/en/modules/plugins.xml
trunk/hibernatetools/docs/reference/en/modules/reverseengineering.xml
Log:
http://jira.jboss.com/jira/browse/JBDS-239 - Spelling and grammer in Guide are corrected.
Modified: trunk/hibernatetools/docs/reference/en/modules/ant.xml
===================================================================
--- trunk/hibernatetools/docs/reference/en/modules/ant.xml 2007-12-29 15:10:27 UTC (rev 5486)
+++ trunk/hibernatetools/docs/reference/en/modules/ant.xml 2008-01-03 12:41:58 UTC (rev 5487)
@@ -201,10 +201,10 @@
<para>Each have in common that they are able to build up a Hibernate
<literal>Configuration</literal> object from which a set of exporters can be run to generate
- various output. Note: output can be anything, e.g. specific files, statments execution against
+ various output. Note: output can be anything, e.g. specific files, statements execution against
a database, error reporting or anything else that can be done in java code.</para>
- <para>The following section decribes what the the various configuration can do, plus list the
+ <para>The following section describes what the various configuration can do, plus list the
individual settings they have.</para>
<section>
@@ -265,7 +265,7 @@
</callout>
<callout arearefs="cfg5">
- <para>A standard Ant fileset. Used to include hibernate mapping files.Remember that if
+ <para>A standard Ant fileset. Used to include hibernate mapping files. Remember that if
mappings are already specified in the hibernate.cfg.xml then it should not be
included via the fileset as it will result in duplicate import exceptions.</para>
</callout>
@@ -461,8 +461,8 @@
tables and has no other columns.</para>
</callout>
<callout arearefs="xcfg5">
- <para>detectOptimisticLock (efault:true): If true columns named VERSION or TIMESTAMP
- with appropriate types will be mapped with the apropriate optimistic locking
+ <para>detectOptimisticLock (default:true): If true columns named VERSION or TIMESTAMP
+ with appropriate types will be mapped with the appropriate optimistic locking
corresponding to <literal><version></literal> or
<literal><timestamp></literal></para>
</callout>
@@ -493,7 +493,7 @@
<section>
<title>Exporters</title>
- <para>Exporters is the parts that does the actual job of converting the hibernate metamodel into
+ <para>Exporters are the parts that does the actual job of converting the hibernate metamodel into
various artifacts, mainly code. The following section describes the current supported set of
exporters in the <property>Hibernate Tool</property> distribution. It is also possible for userdefined exporters,
that is done through the <emphasis>
@@ -568,7 +568,7 @@
</callout>
<callout arearefs="ycfg6">
- <para>delimiter (default: ";"): What delimter to use to separate statements</para>
+ <para>delimiter (default: ";"): What delimiter to use to separate statements</para>
</callout>
<callout arearefs="ycfg7">
@@ -602,8 +602,8 @@
<title>POJO java code exporter (<literal><hbm2java></literal>)</title>
<para><emphasis>
- <property><hbm2java></property></emphasis> is a java codegenerator. Options for controlling wether JDK 5
- syntax can be used and wether the POJO should be annotated with EJB3/Hibernate Annotations.</para>
+ <property><hbm2java></property></emphasis> is a java codegenerator. Options for controlling whether JDK 5
+ syntax can be used and whether the POJO should be annotated with EJB3/Hibernate Annotations.</para>
<para>
<programlistingco>
@@ -837,7 +837,7 @@
<section>
<title>Using properties to configure Exporters</title>
- <para>Exporters can be controlled by user properties. The user properties is specificed via
+ <para>Exporters can be controlled by user properties. The user properties are specified via
<emphasis>
<property><property></property></emphasis> or
<emphasis>
@@ -860,7 +860,7 @@
<property><literal><property></literal></property></emphasis> is enough for specifying
the properties needed for the exporters. Still the ant tools supports the notion of
<emphasis>
- <property><literal><propertyset></literal></property></emphasis>. The functionallity of
+ <property><literal><propertyset></literal></property></emphasis>. The functionality of
<emphasis>
<property><literal><propertyset></literal></property></emphasis> is explained in detail in the Ant task
manual.</para>
@@ -881,7 +881,7 @@
<emphasis>
<property><literal><hibernatetool></literal></property></emphasis> or inside any exporter will automatically
create an instance of <literal>x.y.z.NameOfToolClass</literal> and it will be available in
- the templates as <literal>$sometool</literal>. This is usefull to delegate logic and code
+ the templates as <literal>$sometool</literal>. This is useful to delegate logic and code
generation to java code instead of placing such logic in the templates.</para>
<section>
Modified: trunk/hibernatetools/docs/reference/en/modules/codegen.xml
===================================================================
--- trunk/hibernatetools/docs/reference/en/modules/codegen.xml 2007-12-29 15:10:27 UTC (rev 5486)
+++ trunk/hibernatetools/docs/reference/en/modules/codegen.xml 2008-01-03 12:41:58 UTC (rev 5487)
@@ -177,7 +177,7 @@
<row>
<entry><literal>default-value</literal></entry>
- <entry>default initializatioin value for a field</entry>
+ <entry>default initialization value for a field</entry>
</row>
<row>
@@ -192,7 +192,7 @@
<entry>include this property in the <literal>equals()</literal>
and <literal>hashCode()</literal> method. If no use-in-equals is
- specificed, no equals/hashcode will be generated.</entry>
+ specified, no equals/hashcode will be generated.</entry>
</row>
<row>
@@ -265,7 +265,7 @@
<property>"class-scope"</property></emphasis> to the current class, not the subclasses.</para>
<section>
- <title>Recomendations</title>
+ <title>Recommendations</title>
<para>The following are some good practices when using
<emphasis>
@@ -408,7 +408,7 @@
<para>With an <emphasis>
<meta attribute="class-code"></emphasis>,
- you can add addional methods on a given class, nevertheless such
+ you can add additional methods on a given class, nevertheless such
<emphasis>
<property><meta></property></emphasis> attribute can not be used at property
scope level and <property>Hibernate Tools</property> does not provide such
@@ -416,7 +416,7 @@
<property><meta></property></emphasis> attributes.</para>
<para>A possibly solution for this is to modify the freemarker
- templates responsable for generating the POJO's. If you look inside
+ templates responsible for generating the POJO's. If you look inside
<emphasis>
<property>hibernate-tools.jar</property></emphasis>, you can find the template:
<emphasis>
@@ -474,7 +474,7 @@
contents will be generated into the body of the relevant
<literal>set</literal> method.</para>
- <para>As an examlpe let us add a pre-condition for property
+ <para>As an example let us add a pre-condition for property
<literal>name</literal> preventing no <literal>Person</literal> can
have an empty name. So we have to modify the
<emphasis>
Modified: trunk/hibernatetools/docs/reference/en/modules/codegenarchitecture.xml
===================================================================
--- trunk/hibernatetools/docs/reference/en/modules/codegenarchitecture.xml 2007-12-29 15:10:27 UTC (rev 5486)
+++ trunk/hibernatetools/docs/reference/en/modules/codegenarchitecture.xml 2008-01-03 12:41:58 UTC (rev 5487)
@@ -70,7 +70,7 @@
<para>In most projects you will normally use only one of the Core, Annotation or JPA
configuration and possibly the JDBC configuration if you are using the reverse engineering
- facilities of <property>Hibernate Tools</property>. The important thing to note is that no matter which Hibnerate
+ facilities of <property>Hibernate Tools</property>. The important thing to note is that no matter which Hibernate
Configuration type you are using <property>Hibernate Tools</property> supports them.</para>
<para>The following drawing illustrates the core concepts:</para>
Modified: trunk/hibernatetools/docs/reference/en/modules/plugins.xml
===================================================================
--- trunk/hibernatetools/docs/reference/en/modules/plugins.xml 2007-12-29 15:10:27 UTC (rev 5486)
+++ trunk/hibernatetools/docs/reference/en/modules/plugins.xml 2008-01-03 12:41:58 UTC (rev 5487)
@@ -85,7 +85,7 @@
<para>Press <emphasis>
<property>Finish</property>
</emphasis> to create the configuration file, after optionally creating a Console
- onfiguration, the <emphasis>
+ configuration, the <emphasis>
<property>hibernate.cfg.xml</property>
</emphasis> will be automatically opened in an editor. The last option <emphasis>
<property>Create Console Configuration</property>
@@ -101,7 +101,7 @@
should configure <property>Hibernate</property> and what configuration files, including which
classpath is needed to load the POJO's, JDBC drivers etc. It is required to make usage of
query prototyping, reverse engineering and code generation. You can have multiple named
- console configurations. Normally you would just need one per project, but more is definitly
+ console configurations. Normally you would just need one per project, but more is definitely
possible.</para>
<para>You create a console configuration by running the Console Configuration wizard, shown in
@@ -137,7 +137,7 @@
<property>Classpath</property>
</emphasis> for classpath and <emphasis>
<property>Mappings</property>
- </emphasis> for additional mappings. The two latter ones is normally not required if you
+ </emphasis> for additional mappings. The two latter ones are normally not required if you
specify a project and it has <emphasis>
<property>
<literal> /hibernate.cfg.xml </literal>
@@ -516,7 +516,7 @@
</mediaobject>
</figure>
- <para>The first time you create a code generation launcher you should give it a meaningfull
+ <para>The first time you create a code generation launcher you should give it a meaningful
name, otherwise the default prefix <emphasis>
<property>New_Generation</property>
</emphasis> will be used.</para>
@@ -633,7 +633,7 @@
<entry>
<para>If reveng.xml does not provide enough customization you can provide your own
implementation of an ReverseEngineeringStrategy. The class need to be in the
- claspath of the Console Configuration, otherwise you will get class not found
+ classpath of the Console Configuration, otherwise you will get class not found
exceptions. See <xref linkend="custom-reveng-strategy"/> for details and an
example of a custom strategy.</para>
</entry>
@@ -778,7 +778,7 @@
</entry>
<entry>
- <para>Generate a hibernate.cfg.xml file. Used to keep the hibernate.cfg.xml uptodate
+ <para>Generate a hibernate.cfg.xml file. Used to keep the hibernate.cfg.xml update
with any new found mapping files.</para>
</entry>
</row>
@@ -812,7 +812,7 @@
<para>Each Exporter listens to certain properties and these can be setup in the <emphasis>
<property>Properties</property>
</emphasis> section where you can add/remove predefined or customer properties for each of
- the exporters. The following table lists the time of writing pre-defined properties:</para>
+ the exporters. The following table lists the time of writing predefined properties:</para>
<para>
<table>
@@ -937,7 +937,7 @@
<property>hbm.xml </property>
</emphasis> and <emphasis>
<property>cfg.xml</property>
- </emphasis> files. The editor is based on the Eclipse WTP tools and extend its functionallity
+ </emphasis> files. The editor is based on the Eclipse WTP tools and extend its functionality
to provide Hibernate specific code completion.</para>
<figure>
@@ -968,7 +968,7 @@
</emphasis> files to the relevant class/field in java code.</para>
<figure>
- <title>Navigation Functionallity</title>
+ <title>Navigation Functionality</title>
<para>
<mediaobject>
<imageobject role="fo">
@@ -991,7 +991,7 @@
</para>
</figure>
- <para>This is done via the standard hyperlink navigation functionallity in Eclipse; per
+ <para>This is done via the standard hyperlink navigation functionality in Eclipse; per
default it is done by pressing F3 while the cursor is on a class/field or by pressing <emphasis>
<property>Ctrl</property>
</emphasis> and the mouse button to perform the same navigation.</para>
@@ -1079,7 +1079,7 @@
<para>Note that not all the features of the <emphasis>
<property>.reveng.xml</property></emphasis> file is exposed or fully implemented in
- the editor, but the main functionallity is there. To understand the full flexibility of the
+ the editor, but the main functionality is there. To understand the full flexibility of the
<emphasis>
<property>reveng.xml</property></emphasis>, please see <xref linkend="hibernaterevengxmlfile"/></para>
@@ -1090,7 +1090,7 @@
<property>Ctrl+N</property></emphasis> or via the code generation
launcher.</para>
- <para>The following screentshot shows the <emphasis>
+ <para>The following screenshot shows the <emphasis>
<property>Overview</property></emphasis> page where the wanted console configuration
is selected (auto-detected if Hibernate 3 support is enabled for the project)</para>
@@ -1239,7 +1239,7 @@
<para>Errors during creation of the <literal>SessionFactory</literal> or running the queries
(e.g. if your configuration or query is incorrect) will be shown in a message dialog or
- inlined in the view that detected the error, you may get more information about the error in
+ inclined in the view that detected the error, you may get more information about the error in
the Error Log view on the right pane.</para>
<para>Results of a query will be shown in the Query result view and details of possible errors
Modified: trunk/hibernatetools/docs/reference/en/modules/reverseengineering.xml
===================================================================
--- trunk/hibernatetools/docs/reference/en/modules/reverseengineering.xml 2007-12-29 15:10:27 UTC (rev 5486)
+++ trunk/hibernatetools/docs/reference/en/modules/reverseengineering.xml 2008-01-03 12:41:58 UTC (rev 5487)
@@ -41,7 +41,7 @@
filtering. This file can be created by hand (its just basic XML) or you
can use the Hibernate plugins which have a specialized editor.</para>
- <note><para>Many databases is case-sensitive with their names and thus if
+ <note><para>Many databases are case-sensitive with their names and thus if
you cannot make some table match and you are sure it is not excluded by a
<table-filter>then check if the case matches; most databases stores
table names in uppercase.</para></note>
@@ -178,7 +178,7 @@
/>
</type-mapping>]]></programlisting>
- <para>The number of attributes specificed and the sequence of the
+ <para>The number of attributes specified and the sequence of the
<literal>sql-type</literal>'s is important. Meaning that <property>Hibernate</property> will
search for the most specific first, and if no specific match is found it
will seek from top to bottom when trying to resolve a type
@@ -290,7 +290,7 @@
<entry>char</entry>
<entry>Even though there is a generic match for VARCHAR, the
- more specifc type-mapping for VARCHAR with not-null="false" is
+ more specific type-mapping for VARCHAR with not-null="false" is
chosen. The first VARCHAR sql-type matches in length but has
no value for not-null and thus is not considered.</entry>
</row>
@@ -356,9 +356,9 @@
<title>Table filters (<table-filter>)</title>
<para>The <emphasis>
- <property><table-filter></property></emphasis> let you specifcy matching rules for
+ <property><table-filter></property></emphasis> let you specify matching rules for
performing general filtering/setup for tables, e.g. let you include or
- exclude specific tables based on the schema or even a specifc
+ exclude specific tables based on the schema or even a specific
prefix.</para>
<programlistingco>
@@ -493,7 +493,7 @@
<callout arearefs="pk-generatorclass">
<para>generator/class (Optional): defines which identifier
generator should be used. The class name is any hibernate short
- hand name or fully quailfied class name for an identifier
+ hand name or fully qualified class name for an identifier
strategy.</para>
</callout>
17 years