=== Fulltext search GeboGebo uses the indexed fulltext search of tdbengine. Thus it is a really, really extremly fast way to find information. The fulltext search requires a special syntax which is very easy to understand. Here is a list of all possible combinations of keywords and search symbols. * **Software** matches all bug reports that contain the word "Software" whilst capitalization plays no role. * **Softw?re** matches all bug reports that contain a word like this: "Softw" + any Char + "re" - the ? is a joker for exactly one character * **Sof*re** matches all bug reports that contain words beginning with "Sof" and ending with "re" - the * is a joker for any number of characters * **Soft, Ware** matches all bug reports that contain the word "soft" as well as the word "ware" * **Soft+Ware** matches all bug reports that either contain the word "soft" or the word "ware", as well as both of them * **Soft-Ware** matches all bug reports that contain the word "Soft", but explicitely do not contain the word "Ware".