1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
|
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!--
Copyright (c) 2005, 2020 IBM Corporation and others.
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/
SPDX-License-Identifier: EPL-2.0
Contributors:
IBM Corporation - initial API and implementation
George Suaridze <suag@1c.ru> (1C-Soft LLC) - Bug 559885
-->
<plugin>
<!--
Cheat sheet test content
-->
<extension
point="org.eclipse.ui.cheatsheets.cheatSheetContent">
<category
name="Cheat sheet examples - part 1"
id="org.eclipse.ua.tests.cheatsheet.cheatSheetsCat">
</category>
<category
name="Cheat sheet examples - part 2"
id="org.eclipse.ua.tests.cheatsheet.cheatSheetsCat2">
</category>
<category
name="Tests"
id="org.eclipse.ua.tests.cheatsheet.cheatSheetsTestCat">
</category>
<cheatsheet
name="Hello World"
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsCat"
contentFile="data/cheatsheet/valid/HelloWorld.xml"
id="org.eclipse.ua.tests.cheatsheet.HelloWorld">
<description>
This cheat sheet will guide you through building a hello world Java application and testing it.
Uses only the basic cheat sheet features.
</description>
</cheatsheet>
<cheatsheet
name="Hello World With Extensions Icons"
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsCat"
contentFile="data/cheatsheet/valid/HelloWorldWithExtensions.xml"
id="org.eclipse.ua.tests.cheatsheet.HelloWorldWithExtensions">
<description>
This cheat sheet has extra icons next to the help icon using the cheatSheetItemExtension extension point.
</description>
</cheatsheet>
<cheatsheet
name="Hello World With Subitems"
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsCat"
contentFile="data/cheatsheet/valid/HelloWorldWithSubitems.xml"
id="org.eclipse.ua.tests.cheatsheet.HelloWorldWithSubitem">
<description>
This cheat sheet uses subitems.
</description>
</cheatsheet>
<cheatsheet
name="Testing Cheat Sheets actions"
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsTestCat"
contentFile="data/cheatsheet/valid/TestCSActions.xml"
id="org.eclipse.ua.tests.cheatsheet.cheatsheetsActions">
<description>
This cheat sheet has items to test the framework
</description>
</cheatsheet>
<cheatsheet
name="Testing Parameters"
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsTestCat"
contentFile="data/cheatsheet/valid/TestParameters.xml"
id="org.eclipse.ua.tests.cheatsheet.parameters">
<description>
This cheat sheet has items to test the framework
</description>
</cheatsheet>
<cheatsheet
name="Testing Context Help and Help Links"
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsTestCat"
contentFile="data/cheatsheet/valid/TestContext_Help.xml"
id="org.eclipse.ua.tests.cheatsheet.infopop.help">
<description>
This cheat sheet has items to test the framework
</description>
</cheatsheet>
<cheatsheet
name="Testing SubItems"
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsTestCat"
contentFile="data/cheatsheet/valid/TestSubItems.xml"
id="org.eclipse.ua.tests.cheatsheet.subitems">
<description>
This cheat sheet has items to test the framework
</description>
</cheatsheet>
<cheatsheet
name="Testing Dynamic SubItems"
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsTestCat"
contentFile="data/cheatsheet/valid/TestDynamicSubItems.xml"
id="org.eclipse.ua.tests.cheatsheet.dynamic.subitems">
<description>
This cheat sheet has items to test the framework
</description>
</cheatsheet>
<cheatsheet
name="Testing Item Description Formatting"
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsTestCat"
contentFile="data/cheatsheet/valid/TestDescriptionFormatting.xml"
id="org.eclipse.ua.tests.cheatsheet.description">
<description>
This cheat sheet has items to test the framework
</description>
</cheatsheet>
<cheatsheet
name="Testing Actions"
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsTestCat"
contentFile="data/cheatsheet/valid/TestActions.xml"
id="org.eclipse.ua.tests.cheatsheet.actions">
<description>
This cheat sheet has items to test the framework
</description>
</cheatsheet>
<taskEditor
class="org.eclipse.ua.tests.cheatsheet.util.TestTaskEditor"
icon="$nl$/icons/sample.gif"
id="ua.junit"/>
<cheatsheet
composite="false"
contentFile="data/cheatsheet/search/CSSearchTest.xml"
id="org.eclipse.ua.tests.cheatsheet.searchTest"
name="Test cheat sheet search"/>
<cheatsheet
composite="true"
contentFile="data/cheatsheet/search/CompositeSearchTest.xml"
id="org.eclipse.ua.tests.composite.searchTest"
name="Composite cheat sheet search test"/>
<cheatsheet
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsTestCat"
composite="false"
contentFile="data/cheatsheet/performance/simple.xml"
id="org.eclipse.ua.tests.cheatsheet.performance.simple"
name="Performance test simple cheat sheet">
<description>
This cheat sheet is used to measure simple cheat sheet view performance.
</description>
</cheatsheet>
<cheatsheet
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsTestCat"
composite="true"
contentFile="data/cheatsheet/performance/composite.xml"
id="org.eclipse.ua.tests.cheatsheet.performance.composite"
name="Performance test composite cheat sheet">
<description>
This cheat sheet is used to measure composite cheat sheet view performance.
</description>
</cheatsheet>
<category
id="org.eclipse.ua.tests.category.suite"
name="User Assistance Tests">
</category>
<cheatsheet
category="org.eclipse.ua.tests.category.suite"
composite="true"
contentFile="non_junit/cheatsheets/uaTests.xml"
id="org.eclipse.ua.tests.cheatsheet1052183668"
name="User Assistance Test Suite">
<description>
User Assistance Test Suite
</description>
</cheatsheet>
<cheatsheet
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsTestCat"
composite="false"
contentFile="data/cheatsheet/search/NoSuchFile.xml"
id="org.eclipse.ua.tests.cheatsheet.nocontent"
name="Content file missing">
</cheatsheet>
<cheatsheet
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsTestCat"
composite="false"
contentFile="non_junit/cheatsheets/tasks/placeholder.xml"
id="org.eclipse.ua.tests.cheatsheet.placeholder"
name="Placeholder cheatsheet">
</cheatsheet>
<category
id="org.eclipse.ua.tests.subcategory"
name="Subcategory"
parentCategory="org.eclipse.ua.tests.cheatsheet.cheatSheetsTestCat">
</category>
<cheatsheet
category="org.eclipse.ua.tests.subcategory"
composite="false"
contentFile="non_junit/cheatsheets/tasks/placeholder.xml"
id="org.eclipse.ua.tests.cheatsheet.subcategory.simple"
name="Cheatsheet in subcategory, non qualified name">
</cheatsheet>
<cheatsheet
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsTestCat/org.eclipse.ua.tests.subcategory"
composite="false"
contentFile="non_junit/cheatsheets/tasks/placeholder.xml"
id="org.eclipse.ua.tests.cheatsheet.subcategory.qualified"
name="Cheatsheet in subcategory, qualified name">
</cheatsheet>
<cheatsheet
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsTestCat"
contentFile="data/cheatsheet/valid/TestCSHyperlinks.xml"
id="org.eclipse.ua.tests.cheatsheet.cheatsheetsHyperlinks"
name="Testing Cheat Sheets hyperlinks">
<description>
This cheat sheet has items to test the framework
</description>
</cheatsheet>
<cheatsheet
category="org.eclipse.ua.tests.cheatsheet.cheatSheetsTestCat"
composite="false"
contentFile="data/cheatsheet/other/ExtraLongContent.xml"
id="org.eclipse.ua.tests.cheatsheetExtraLongContent"
name="Extra Long Content">
</cheatsheet>
</extension>
<!--
Cheat sheet context help test
-->
<extension point="org.eclipse.help.contexts">
<contexts file="data/cheatsheet/contexts.xml"/>
</extension>
<!--
Command used in tests
-->
<extension
point="org.eclipse.ui.commands">
<category
id="org.eclipse.ui.cheatsheets.tests.category1"
name="org.eclipse.ui.cheatsheets.tests.category1"/>
<command
categoryId="org.eclipse.ui.category.file"
defaultHandler="org.eclipse.ua.tests.cheatsheet.execution.CommandHandler"
id="org.eclipse.ui.cheatsheets.tests.command1"
name="Cheatsheet test command">
<commandParameter
id="param1_id"
name="Parameter1"
optional="true"
/>
<commandParameter
id="param2_id"
name="Parameter2"
optional="true"
/>
</command>
<command
defaultHandler="org.eclipse.ua.tests.cheatsheet.execution.NegateIntegerHandler"
id="org.eclipse.ui.cheatsheets.tests.NegateIntegerCommand"
name="Test Command with Integer Values"
returnTypeId="org.eclipse.ui.dialogs.Integer">
<commandParameter
id="number"
name="Number"
optional="false"
typeId="org.eclipse.ui.dialogs.Integer"/>
</command>
</extension>
<!--
Intro test content
-->
<extension
point="org.eclipse.ui.intro">
<intro
class="org.eclipse.ui.intro.config.CustomizableIntroPart"
id="org.eclipse.ua.tests.intro.dynamicXHTML">
</intro>
<intro
class="org.eclipse.ui.intro.config.CustomizableIntroPart"
id="org.eclipse.ua.tests.intro.dynamicXML">
</intro>
<intro
class="org.eclipse.ui.intro.config.CustomizableIntroPart"
id="org.eclipse.ua.tests.intro.anchors">
</intro>
<intro
class="org.eclipse.ui.intro.config.CustomizableIntroPart"
id="org.eclipse.ua.tests.intro.mixed">
</intro>
<intro
class="org.eclipse.ui.intro.config.CustomizableIntroPart"
id="org.eclipse.ua.tests.intro.static">
</intro>
<introProductBinding
introId="org.eclipse.ua.tests.intro.static"
productId="org.eclipse.ua.tests.testproduct">
</introProductBinding>
</extension>
<extension
point="org.eclipse.ui.intro.config">
<config
introId="org.eclipse.ua.tests.intro.dynamicXHTML"
content="data/intro/dynamicXHTML/introContent.xml"
id="org.eclipse.ua.tests.intro.config.dynamicXHTML">
<presentation
home-page-id="root">
<implementation
kind="html"
os="win32,linux,macosx">
</implementation>
</presentation>
</config>
<config
introId="org.eclipse.ua.tests.intro.dynamicXML"
id="org.eclipse.ua.tests.intro.config.dynamicXML"
content="data/intro/dynamicXML/introContent.xml">
<presentation
home-page-id="root" standby-page-id="standby">
<implementation
style="data/intro/dynamicXML/css/shared.css"
kind="html"
os="win32,linux,macosx">
</implementation>
<implementation
kind="swt">
</implementation>
</presentation>
</config>
<config
introId="org.eclipse.ua.tests.intro.anchors"
id="org.eclipse.ua.tests.intro.config.anchors"
content="data/intro/anchors/introContent.xml">
<presentation
home-page-id="root" standby-page-id="standby">
<implementation
kind="html"
os="win32,linux,macosx">
</implementation>
<implementation
kind="swt">
</implementation>
</presentation>
</config>
<config
introId="org.eclipse.ua.tests.intro.mixed"
id="org.eclipse.ua.tests.intro.config.mixed"
content="data/intro/mixed/introContent.xml">
<presentation
home-page-id="dynamic1" standby-page-id="dynamic3">
<implementation
kind="html"
os="win32,linux,macosx">
</implementation>
<implementation
kind="swt">
</implementation>
</presentation>
</config>
<config
introId="org.eclipse.ua.tests.intro.static"
id="org.eclipse.ua.tests.intro.config.static"
content="data/intro/staticroot/introContent.xml">
<presentation
home-page-id="static1" standby-page-id="static3">
<implementation
kind="html"
os="win32,linux,macosx">
</implementation>
<implementation
kind="swt">
</implementation>
</presentation>
</config>
</extension>
<extension
point="org.eclipse.ui.intro.configExtension">
<configExtension
content="data/intro/dynamicXHTML/ext.xml"
configId="org.eclipse.ua.tests.intro.config.dynamicXHTML">
</configExtension>
<configExtension
content="data/intro/dynamicXHTML/ext2.xml"
configId="org.eclipse.ua.tests.intro.config.dynamicXHTML">
</configExtension>
<configExtension
content="data/intro/dynamicXML/ext.xml"
configId="org.eclipse.ua.tests.intro.config.dynamicXML">
</configExtension>
<configExtension
content="data/intro/anchors/extn1.xml"
configId="org.eclipse.ua.tests.intro.config.anchors">
</configExtension>
<configExtension
content="data/intro/anchors/extn2.xml"
configId="org.eclipse.ua.tests.intro.config.anchors">
</configExtension>
<configExtension
content="data/intro/anchors/extn3.xml"
configId="org.eclipse.ua.tests.intro.config.anchors">
</configExtension>
<configExtension
content="data/intro/anchors/extn4.xml"
configId="org.eclipse.ua.tests.intro.config.anchors">
</configExtension>
<configExtension
content="data/intro/anchors/extn5.xml"
configId="org.eclipse.ua.tests.intro.config.anchors">
</configExtension>
<configExtension
content="data/intro/anchors/extn6.xml"
configId="org.eclipse.ua.tests.intro.config.anchors">
</configExtension>
<configExtension
configId="org.eclipse.ui.intro.universalConfig"
content="data/intro/search/samplesExtensionContent.xml"/>
<!-- 3.2 welcome content used for open welcome performance test -->
<!-- filtered unless running test -->
<configExtension
configId="org.eclipse.ui.intro.universalConfig"
content="data/intro/performance/org.eclipse.jdt/overviewExtensionContent.xml"/>
<configExtension
configId="org.eclipse.ui.intro.universalConfig"
content="data/intro/performance/org.eclipse.jdt/tutorialsExtensionContent.xml"/>
<configExtension
configId="org.eclipse.ui.intro.universalConfig"
content="data/intro/performance/org.eclipse.jdt/samplesExtensionContent.xml"/>
<configExtension
configId="org.eclipse.ui.intro.universalConfig"
content="data/intro/performance/org.eclipse.jdt/newsExtensionContent.xml"/>
<configExtension
configId="org.eclipse.ui.intro.universalConfig"
content="data/intro/performance/org.eclipse.pde/overviewExtensionContent.xml"/>
<configExtension
configId="org.eclipse.ui.intro.universalConfig"
content="data/intro/performance/org.eclipse.pde/tutorialsExtensionContent.xml"/>
<configExtension
configId="org.eclipse.ui.intro.universalConfig"
content="data/intro/performance/org.eclipse.pde/samplesExtensionContent.xml"/>
<configExtension
configId="org.eclipse.ui.intro.universalConfig"
content="data/intro/performance/org.eclipse.pde/samplesExtensionContent2.xml"/>
<configExtension
configId="org.eclipse.ui.intro.universalConfig"
content="data/intro/performance/org.eclipse.pde/newsExtensionContent.xml"/>
<configExtension
configId="org.eclipse.ui.intro.universalConfig"
content="data/intro/performance/org.eclipse.platform/overviewEx.xml"/>
<configExtension
configId="org.eclipse.ui.intro.universalConfig"
content="data/intro/performance/org.eclipse.platform/tutorialsEx.xml"/>
<configExtension
configId="org.eclipse.ui.intro.universalConfig"
content="data/intro/performance/org.eclipse.platform/whatsnewEx1.xml"/>
<configExtension
configId="org.eclipse.ui.intro.universalConfig"
content="data/intro/performance/org.eclipse.platform/whatsnewEx2.xml"/>
<configExtension
configId="org.eclipse.ui.intro.universalConfig"
content="data/intro/performance/org.eclipse.platform/whatsnewEx3.xml"/>
</extension>
<!--
TOC test content
-->
<extension point="org.eclipse.help.toc">
<toc file="data/help/toc/root.xml" primary="true"/>
<toc file="data/help/manual/manual.xml"/>
<toc file="data/help/toc/filteredToc/toc.xml"/>
<toc file="data/help/toc/filteredToc/filter.xml"/>
<toc file="data/help/toc/filteredToc/simple_toc.xml"/>
<toc file="data/help/toc/extraContent/toc.xml"/>
<toc file="data/help/toc/extraContent/toc2.xml"/>
<toc file="data/help/toc/extraContent/simple_toc.xml"/>
<toc file="data/help/search/toc.xml"/>
<toc file="data/help/search/toc2.xml" extradir="data/help/search/extraDir"/>
<toc file="data/help/search/toc3.xml" extradir="data/help/search/extraDir2"/>
<toc file="data/help/search/toc4.xml" extradir="data/help/search/extraDir3"/>
<toc file="data/help/index/toc.xml"/>
<toc file="data/help/jsp/toc.xml"/>
<toc file="non_junit/toc.xml"/>
<tocIcon
id="org.eclipse.ua.tests.openOnly"
openIcon="icons/sample.gif">
</tocIcon>
<tocIcon
altText="altSample"
closedIcon="icons/sample2.gif"
id="org.eclipse.ua.tests.iconSet"
leafIcon="icons/sample3.gif"
openIcon="icons/sample.gif">
</tocIcon>
<tocProvider
class="org.eclipse.ua.tests.help.toc.UaTestTocProvider">
</tocProvider>
<toc
file="data/help/toc/filteredToc/nonPrimaryToc.xml"
primary="false">
</toc>
<toc
file="data/help/criteria/criterialetters.xml"
primary="false">
</toc>
</extension>
<extension point= "org.eclipse.help.contentExtension">
<contentExtension file="data/help/dynamic/include/extension.xml"/>
<contentExtension file="data/help/dynamic/extension/extension.xml"/>
<contentExtension file="data/help/dynamic/shared/extension.xml"/>
<contentExtension file="data/help/search/extension.xml"/>
<contentExtension file="data/help/search/extension2.xml"/>
<contentExtensionProvider
class="org.eclipse.ua.tests.help.search.UATestContentExtensionProvider">
</contentExtensionProvider>
</extension>
<extension
point="org.eclipse.help.index">
<index
file="data/help/index/index.xml">
</index>
</extension>
<!--
A dummy product used to arrange the welcome contributions for the performance test.
-->
<extension id="dummy" point="org.eclipse.core.runtime.products">
<product name="dummyProductName" application="org.eclipse.ui.ide.workbench" description="dummyProductName">
<property name="preferenceCustomization" value="data/intro/performance/plugin_customization.ini"/>
</product>
</extension>
<extension
point="org.eclipse.equinox.http.registry.servlets">
<servlet
alias="/loadtest"
class="org.eclipse.ua.tests.help.util.LoadTestServlet"
httpcontextId="org.eclipse.help.webapp.help">
</servlet>
<serviceSelector
filter="(other.info=org.eclipse.help)">
</serviceSelector>
</extension>
<extension
point="org.eclipse.help.contentProducer">
<contentProducer
producer="org.eclipse.ua.tests.util.UATestContentProducer">
</contentProducer>
</extension>
<extension
point="org.eclipse.equinox.http.registry.servlets">
<servlet
alias="/titlesearch/*.jsp"
class="org.eclipse.equinox.jsp.jasper.registry.JSPFactory:/"
httpcontextId="org.eclipse.help.webapp.help">
</servlet>
<serviceSelector
filter="(other.info=org.eclipse.help)">
</serviceSelector>
<servlet
alias="/counter.html"
class="org.eclipse.ua.tests.browser.servlet.CounterServlet"
httpcontextId="org.eclipse.help.webapp.help">
</servlet>
</extension>
<extension
point="org.eclipse.equinox.http.registry.resources">
<resource
alias="/titlesearch/icons"
base-name="/icons">
</resource>
<resource
alias="/titlesearch/script"
base-name="/script">
</resource>
<resource
alias="/test"
base-name="/service">
</resource>
<serviceSelector
filter="(other.info=org.eclipse.help)">
</serviceSelector>
</extension>
<extension
point="org.eclipse.help.webapp.view">
<view
class="org.eclipse.ua.tests.help.webextension.TitleSearchView">
</view>
</extension>
<extension
point="org.eclipse.help.webapp.toolbarButton">
<button
class="org.eclipse.ua.tests.help.webextension.TitleSearchButton">
</button>
</extension>
<extension
point="org.eclipse.help.webapp.frame">
<frame
class="org.eclipse.ua.tests.help.webextension.TestFrame">
</frame>
<frame
class="org.eclipse.ua.tests.help.webextension.TestHelpToolbarFrame">
</frame>
</extension>
<extension
point="org.eclipse.equinox.http.registry.httpcontexts">
<httpcontext
id="uaTest">
<resource-mapping
path="/">
</resource-mapping>
</httpcontext>
</extension>
<extension
point="org.eclipse.equinox.http.registry.servlets">
<servlet
alias="/search"
class="org.eclipse.ua.tests.help.remote.MockSearchServlet"
httpcontextId="uaTest">
</servlet>
<servlet
alias="/toc"
class="org.eclipse.ua.tests.help.remote.MockTocServlet"
httpcontextId="uaTest">
</servlet>
<servlet
alias="/context"
class="org.eclipse.ua.tests.help.remote.MockContextServlet">
</servlet>
<servlet
alias="/rtopic"
class="org.eclipse.ua.tests.help.remote.MockContentServlet">
</servlet>
<servlet
alias="/index"
class="org.eclipse.ua.tests.help.remote.MockIndexServlet">
</servlet>
<serviceSelector
filter="(other.info=org.eclipse.ua.tests)">
</serviceSelector>
</extension>
<extension
point="org.eclipse.help.base.searchParticipant">
<searchParticipant
headless="false"
icon="icons/sample4.gif"
id="org.eclipse.ua.tests.searchParticipant"
name="Mock Search Participant"
participant="org.eclipse.ua.tests.help.search.MockSearchParticipant">
</searchParticipant>
<searchParticipant
headless="false"
icon="icons/sample4.gif"
id="org.eclipse.ua.tests.searchParticipantXml"
name="Mock Search Participant for XML"
participant="org.eclipse.ua.tests.help.search.MockSearchParticipantXML">
</searchParticipant>
</extension>
<extension
point="org.eclipse.help.criteriaProvider">
<provider
class="org.eclipse.ua.tests.help.criteria.SampleCriteriaProvider"></provider>
</extension>
<extension
point="org.eclipse.help.base.scope">
<scope
class="org.eclipse.ua.tests.help.scope.TScope"
id="tscope">
</scope>
</extension>
<extension
point="org.eclipse.help.criteriaDefinition">
<criteriaDefinitionProvider
class="org.eclipse.ua.tests.help.criteria.SampleCriteriaDefinitionProvider">
</criteriaDefinitionProvider>
</extension>
<extension
id="testproduct"
point="org.eclipse.core.runtime.products">
<product
application="org.eclipse.ui.ide.workbench"
name="UA Test Product">
<property
name="preferenceCustomization"
value="data/test_customization.ini">
</property>
</product>
</extension>
<extension
id="criteriaproduct"
point="org.eclipse.core.runtime.products">
<product
application="org.eclipse.ui.ide.workbench"
name="UA Criteria Test Product">
<property
name="preferenceCustomization"
value="data/criteria_customization.ini">
</property>
</product>
</extension>
</plugin>
|