Configuration
(moving sample code to other file) |
|||
Line 1: | Line 1: | ||
− | OpenCms comes with a built in search index for the online and offline projects. Additional search indices can be created but have to be done through editing the XML config files. | + | OpenCms comes with a built in search index for the online and offline projects. Additional search indices can be created but have to be done through editing the XML config file opencms-search.xml. |
+ | |||
+ | Make a backup before touching these config files!!! OpenCms will not even run if there is a problem in them. | ||
+ | |||
+ | A additional search index section would go in the indexes section of opencms-search.xml, and would look something like this: | ||
+ | |||
+ | <index> | ||
+ | <name>myproject</name> | ||
+ | <rebuild>auto</rebuild> | ||
+ | <project>Online</project> | ||
+ | <locale>en</locale> | ||
+ | <sources> | ||
+ | <source>source1</source> | ||
+ | </sources> | ||
+ | </index> | ||
+ | |||
+ | You also need to create an index source to go along with it, it goes in the indexsources section of the XML: | ||
+ | |||
+ | <indexsource> | ||
+ | <name>source1</name> | ||
+ | <indexer class="org.opencms.search.CmsVfsIndexer"/> | ||
+ | <resources> | ||
+ | <resource>/sites/mysite/</resource> | ||
+ | </resources> | ||
+ | <documenttypes-indexed> | ||
+ | <name>xmlpage</name> | ||
+ | <name>xmlcontent</name> | ||
+ | <name>text</name> | ||
+ | <name>pdf</name> | ||
+ | <name>rtf</name> | ||
+ | <name>html</name> | ||
+ | <name>msword</name> | ||
+ | <name>msexcel</name> | ||
+ | <name>mspowerpoint</name> | ||
+ | <name>image</name> | ||
+ | <name>generic</name> | ||
+ | </documenttypes-indexed> | ||
+ | </indexsource> |
Revision as of 20:06, 27 June 2007
OpenCms comes with a built in search index for the online and offline projects. Additional search indices can be created but have to be done through editing the XML config file opencms-search.xml.
Make a backup before touching these config files!!! OpenCms will not even run if there is a problem in them.
A additional search index section would go in the indexes section of opencms-search.xml, and would look something like this:
<index> <name>myproject</name> <rebuild>auto</rebuild> <project>Online</project> <locale>en</locale> <sources>
Invalid language.
You need to specify a language like this: <source lang="html">...</source>
Supported languages for syntax highlighting:
actionscript, ada, apache, applescript, asm, asp, autoit, bash, blitzbasic, bnf, c, c_mac, caddcl, cadlisp, cfdg, cfm, cpp, cpp-qt, csharp, css, d, delphi, diff, div, dos, eiffel, fortran, freebasic, gml, groovy, html4strict, idl, ini, inno, io, java, java5, javascript, latex, lisp, lua, matlab, mirc, mpasm, mysql, nsis, objc, ocaml, ocaml-brief, oobas, oracle8, pascal, perl, php, php-brief, plsql, python, qbasic, reg, robots, ruby, sas, scheme, sdlbasic, smalltalk, smarty, sql, tcl, text, thinbasic, tsql, vb, vbnet, vhdl, visualfoxpro, winbatch, xml, z80
</sources> </index>
You also need to create an index source to go along with it, it goes in the indexsources section of the XML:
<indexsource> <name>source1</name> <indexer class="org.opencms.search.CmsVfsIndexer"/> <resources> <resource>/sites/mysite/</resource> </resources> <documenttypes-indexed> <name>xmlpage</name> <name>xmlcontent</name> <name>text</name> <name>pdf</name> <name>rtf</name> <name>html</name> <name>msword</name> <name>msexcel</name> <name>mspowerpoint</name> <name>image</name> <name>generic</name> </documenttypes-indexed> </indexsource>