diff options
author | Chris Goldthorpe | 2010-02-12 21:56:08 +0000 |
---|---|---|
committer | Chris Goldthorpe | 2010-02-12 21:56:08 +0000 |
commit | 731c50d1522b2ba509cd31097068452734169857 (patch) | |
tree | 33f0113f252912924244a3cbdbc21dc3ecc977f0 /org.eclipse.ua.tests/data/help | |
parent | 3a67bf3253ba63a2946c4508e0918c4c5971f4cb (diff) | |
download | eclipse.platform.ua-731c50d1522b2ba509cd31097068452734169857.tar.gz eclipse.platform.ua-731c50d1522b2ba509cd31097068452734169857.tar.xz eclipse.platform.ua-731c50d1522b2ba509cd31097068452734169857.zip |
Bug 76005 [Help] Ability for users to filter what they see in the help system navigation acc to some criteria (all help modes)
Diffstat (limited to 'org.eclipse.ua.tests/data/help')
3 files changed, 92 insertions, 0 deletions
diff --git a/org.eclipse.ua.tests/data/help/criteria/criteria_definition/a.xml b/org.eclipse.ua.tests/data/help/criteria/criteria_definition/a.xml new file mode 100644 index 000000000..047edb32c --- /dev/null +++ b/org.eclipse.ua.tests/data/help/criteria/criteria_definition/a.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2010 IBM Corporation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Public License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/legal/epl-v10.html + + Contributors: + IBM Corporation - initial API and implementation + --> + +<criteriaDefinition> + <criterion id="version" name="Version"> + <criterion-value id="1.0" name ="1.0.0"/> + <criterion-value id="2.0" name ="2.0.0"/> + </criterion> + <criterion id="platform" name="Platform"> + <criterion-value id="AIX" name ="AIX"/> + <criterion-value id="WINDOWS" name ="Windows"/> + </criterion> +</criteriaDefinition> diff --git a/org.eclipse.ua.tests/data/help/criteria/criteria_definition/b.xml b/org.eclipse.ua.tests/data/help/criteria/criteria_definition/b.xml new file mode 100644 index 000000000..c732b07e2 --- /dev/null +++ b/org.eclipse.ua.tests/data/help/criteria/criteria_definition/b.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2010 IBM Corporation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Public License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/legal/epl-v10.html + + Contributors: + IBM Corporation - initial API and implementation + --> + +<criteriaDefinition> + <criterion id="version" name="Version"> + <criterion-value id="1.0" name ="1.0.0"/> + <criterion-value id="3.0" name ="3.0.0"/> + <criterion-value id="4.0" name = "4.0.0"/> + <criterion-value id="5.0"/> + <criterion-value id=""/> + <criterion-value id="" name ="aaa"/> + <criterion-value name =""/> + <criterion-value name ="aaa"/> + </criterion> + <criterion id="platform" name="Platform"> + <criterion-value id="AIX" name ="AIX"/> + <criterion-value id="Linux" name ="LINUX"/> + </criterion> + <criterion id="product" name="Product"> + <criterion-value id="DB2" name ="DB2"/> + <criterion-value id="WAS" name ="WAS"/> + </criterion> + <criterion id="no criterion value" name ="no criterion value"/> + <criterion id="no name"> + <criterion-value id="bb" name ="bb"/> + </criterion> + <criterion name="no id"/> +</criteriaDefinition> diff --git a/org.eclipse.ua.tests/data/help/criteria/criteria_definition/result_a_b.xml b/org.eclipse.ua.tests/data/help/criteria/criteria_definition/result_a_b.xml new file mode 100644 index 000000000..7ff9f6260 --- /dev/null +++ b/org.eclipse.ua.tests/data/help/criteria/criteria_definition/result_a_b.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2010 IBM Corporation and others. + All rights reserved. This program and the accompanying materials + are made available under the terms of the Eclipse Public License v1.0 + which accompanies this distribution, and is available at + http://www.eclipse.org/legal/epl-v10.html + + Contributors: + IBM Corporation - initial API and implementation + --> + +<criteriaDefinition> + <criterion id="version" name="Version"> + <criterion-value id="1.0" name ="1.0.0"/> + <criterion-value id="2.0" name ="2.0.0"/> + <criterion-value id="3.0" name ="3.0.0"/> + <criterion-value id="4.0" name = "4.0.0"/> + </criterion> + <criterion id="platform" name="Platform"> + <criterion-value id="AIX" name ="AIX"/> + <criterion-value id="WINDOWS" name ="Windows"/> + <criterion-value id="Linux" name ="LINUX"/> + </criterion> + <criterion id="product" name="Product"> + <criterion-value id="DB2" name ="DB2"/> + <criterion-value id="WAS" name ="WAS"/> + </criterion> + <criterion id="no criterion value" name ="no criterion value"/> + <criterion id="no name"> + <criterion-value id="bb" name ="bb"/> + </criterion> +</criteriaDefinition> |