<DIV>Hello guys actually I have explored already the OpenCms specifically using the HTML editor and one problem that i have encountered that there is no font-TAG in HTML codes sometimes if you want to set the font it is disabled.</DIV>
<DIV> </DIV>
<DIV>And by using OpenCms you cant find the HTML codes from the local drive. why the JSP could be created?</DIV>
<DIV> </DIV>
<DIV>and the documentations "on how to" is not totaly similar to the Interface or IDE in the OpenCms V5 Ex. by creating new project it has been documented... using "Administrator" but using OpenCms V6 its "Legacy Administrator".</DIV>
<DIV> </DIV>
<DIV>is there any documentations regarding where the files located or saying the file would not be created on the local drive only the JSP codes?<BR><BR><B><I>opencms-dev-request@opencms.org</I></B> wrote:</DIV>
<BLOCKQUOTE class=replbq style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #1010ff 2px solid">Send opencms-dev mailing list submissions to<BR>opencms-dev@opencms.org<BR><BR>To subscribe or unsubscribe via the World Wide Web, visit<BR>http://lists.opencms.org/mailman/listinfo/opencms-dev<BR>or, via email, send a message with subject or body 'help' to<BR>opencms-dev-request@opencms.org<BR><BR>You can reach the person managing the list at<BR>opencms-dev-owner@opencms.org<BR><BR>When replying, please edit your Subject line so it is more specific<BR>than "Re: Contents of opencms-dev digest..."<BR><BR><BR>Today's Topics:<BR><BR>1. Re: opencms-dev Digest, Vol 51, Issue 6 (lgauthier@opnworks.com)<BR>2. Customise search ERROR [OpenCMS 6.0 ] (David)<BR>3. Customise search ERROR [OpenCMS 6.0] (resend) (David)<BR>4. Re: adding a font (Siegfried Puchbauer)<BR>5. RE: adding a font (Jonathan Woods)<BR>6. Re: Customise search ERROR [OpenCMS 6.0] (resend) (Andras Balogh)<BR>7. Strange
 behaviour importing contents (Ramos)<BR>8. Re: Customise search ERROR [OpenCMS 6.0] (resend) (David)<BR>9. Re: Design for accessibility, HTML Strict and CSS<BR>(Sebastian Himberger)<BR>10. Re: adding a font (Siegfried Puchbauer)<BR>11. Re: Design for accessibility, HTML Strict and CSS<BR>(Alessandro Magnolo)<BR>12. Re: Adding a link to a page (Alessandro Magnolo)<BR>13. Re: image in opencms (Alessandro Magnolo)<BR>14. Re: Adding a link to a page (Alessandro Magnolo)<BR>15. Re: image in opencms (Alessandro Magnolo)<BR>16. Problem creating objects (Andre Luciano Domingues)<BR>17. RE: Customise search ERROR [OpenCMS 6.0] (resend)<BR>(Alexander Kandzior)<BR>18. Re: Problem creating objects (Corsin Camichel)<BR><BR><BR>----------------------------------------------------------------------<BR><BR>Message: 1<BR>Date: 29 Jul 2005 10:04:47 -0000<BR>From: lgauthier@opnworks.com<BR>Subject: [opencms-dev] Re: opencms-dev Digest, Vol 51, Issue 6<BR>To: opencms-dev@opencms.org<BR>Message-ID:
 <20050729100447.66500.qmail@london.clusterspan.net><BR>Content-Type: text/plain; charset=utf-8<BR><BR>Je suis absent jusqu'au 5 aout 2005. Pour toute urgence contacter: direction@opnworks.com<BR><BR>Merci,<BR><BR>Laurent Gauthier<BR><BR>I am absent until August 5, 2005. For any emergency, contact management@opnworks.com.<BR><BR>Thank you,<BR><BR>Laurent Gauthier<BR><BR><BR><BR>------------------------------<BR><BR>Message: 2<BR>Date: Fri, 29 Jul 2005 11:30:27 +0100<BR>From: David <DB92RJ45@GMAIL.COM><BR>Subject: [opencms-dev] Customise search ERROR [OpenCMS 6.0 ]<BR>To: The OpenCms mailing list <OPENCMS-DEV@OPENCMS.ORG><BR>Message-ID: <E402394105072903306ABA9D65@MAIL.GMAIL.COM><BR>Content-Type: text/plain; charset="iso-8859-1"<BR><BR>Hi,<BR>I am trying to customise the search behaviour in OpenCMS such that to allow <BR>an application to dynamically create a new index source and search index <BR>from an arbitrary set of files in VFS and perform a search on those files. <BR>The
 code that I am using is given below. When I run this from a JSP page it <BR>returned with an error saying *No analyzer found for language "null"*<BR>-------------- next part --------------<BR>An HTML attachment was scrubbed...<BR>URL: http://lists.opencms.org/pipermail/opencms-dev/attachments/20050729/f4a0649e/attachment-0001.html<BR><BR>------------------------------<BR><BR>Message: 3<BR>Date: Fri, 29 Jul 2005 11:43:50 +0100<BR>From: David <DB92RJ45@GMAIL.COM><BR>Subject: [opencms-dev] Customise search ERROR [OpenCMS 6.0] (resend)<BR>To: The OpenCms mailing list <OPENCMS-DEV@OPENCMS.ORG><BR>Message-ID: <E4023941050729034358C13361@MAIL.GMAIL.COM><BR>Content-Type: text/plain; charset="iso-8859-1"<BR><BR>Hi,<BR>I am trying to customise the search behaviour in OpenCMS such that to allow <BR>an application to dynamically create a new index source and search index <BR>from an arbitrary set of files in VFS and perform a search on those files. <BR>The code that I am using is given below.
 When I run this from a JSP page it <BR>returned with an error saying *No analyzer found for language "null". *The <BR>trace log for this error is given at the bottom which points to method <BR>getAnalyzer() in CmsSearchManager. So I checked the source code of this <BR>method and it looks perfectly normal given that I already set the locale for <BR>my CmsSearchIndex object to 'en'. I even test printing out the analyzer <BR>class name (see code) using getAnalyzers() method of the CmsSearchManager to <BR>make sure that analyzer for 'en' locale exists. <BR>So the analyzer is there and the locale has been set for the CmsSearchIndex <BR>object, why does it still complain about the analyzer being not found and <BR>weird enough in the error message it seems not able to detect the locale <BR>("null" value)? Has anyone experienced this before and perhaps could provide <BR>some insights? Thanks very much for your prompt response.<BR>Rgds,<BR>David.<BR>// Define the document set from
 files<BR>ArrayList docPaths = new ArrayList();<BR>docPaths.add("/sites/mysite/file1.doc");<BR>docPaths.add("/sites/mysite/file2.pdf");<BR>docPaths.add("/sites/mysite/file3.txt");<BR>String query = "hello*";<BR>// Define index source<BR>CmsSearchIndexSource indexSource = new CmsSearchIndexSource();<BR>indexSource.setName("tempIndexSource");<BR>indexSource.setIndexerClassName("org.opencms.search.CmsVfsIndexer");<BR>indexSource.addDocumentType("xmlpage");<BR>indexSource.addDocumentType("xmlcontent");<BR>indexSource.addDocumentType("page");<BR>indexSource.addDocumentType("text");<BR>indexSource.addDocumentType("pdf");<BR>indexSource.addDocumentType("rtf");<BR>indexSource.addDocumentType("html");<BR>indexSource.addDocumentType("msword");<BR>indexSource.addDocumentType("msexcel");<BR>indexSource.addDocumentType("mspowerpoint");<BR>indexSource.addDocumentType("image");<BR>indexSource.addDocumentType("generic");<BR><BR>// Add documents to index source<BR>for (Iterator pointerIt =
 docPaths.iterator(); pointerIt.hasNext();) {<BR>String pointer = (String) pointerIt.next();<BR>// create a document object from this pointer<BR>indexSource.addResourceName(pointer);<BR>}<BR><BR>// Instantiate an index from the index source<BR>CmsSearchIndex index = new CmsSearchIndex();<BR>index.setName("tempIndex");<BR>index.addSourceName(indexSource.getName()); <BR>index.setLocale("en");<BR>index.setRebuildMode(CmsSearchIndex.AUTO_REBUILD);<BR>index.initialize();<BR><BR>// Test to make sure analyzer for locale 'en' exists<BR>CmsSearchManager searchMgr = OpenCms.getSearchManager();<BR>CmsSearchAnalyzer analyzer = (CmsSearchAnalyzer) searchMgr.getAnalyzers<BR>().get("en");<BR>out.println("Analyzer for locale 'en' is "+analyzer.getClassName());<BR><BR>// Update the index (build it)<BR>searchMgr.addAnalyzer(analyzer);<BR>searchMgr.addSearchIndexSource(indexSource);<BR>searchMgr.addSearchIndex(index);<BR>searchMgr.updateIndex(index.getName());<BR><BR>// Code to search using this
 indexer...<BR><BR><<< ERROR TRACE MESSAGE >>>><BR><BR>org.opencms.search.CmsIndexException: No analyzer found for language "null".<BR>at org.opencms.search.CmsSearchManager.getAnalyzer(CmsSearchManager.java:692)<BR>at org.opencms.search.CmsSearchIndex.getIndexWriter(CmsSearchIndex.java:328)<BR>at org.opencms.search.CmsSearchManager.updateIndex(CmsSearchManager.java:600)<BR>at org.opencms.search.CmsSearchManager.updateIndex(CmsSearchManager.java:557)<BR>at org.opencms.search.CmsSearchManager.updateIndex(CmsSearchManager.java:544)<BR>at .....<BR><BR>...... (omitted)<BR><BR><<<ERROR>>>><BR><BR><BR>-- <BR>Rgds,<BR>David<BR>-------------- next part --------------<BR>An HTML attachment was scrubbed...<BR>URL: http://lists.opencms.org/pipermail/opencms-dev/attachments/20050729/727fed65/attachment-0001.html<BR><BR>------------------------------<BR><BR>Message: 4<BR>Date: Fri, 29 Jul 2005 12:44:49 +0200<BR>From: Siegfried Puchbauer
 <SIEGFRIED.PUCHBAUER@GMAIL.COM><BR>Subject: Re: [opencms-dev] adding a font<BR>To: The OpenCms mailing list <OPENCMS-DEV@OPENCMS.ORG><BR>Message-ID: <53239a2005072903447977f1a@mail.gmail.com><BR>Content-Type: text/plain; charset="iso-8859-1"<BR><BR>hi!<BR><BR>fckeditor would be very nice.... can you tell me, when you expect that your<BR>integration will be finished. i used fck in a project without opencms...<BR>its very stable (much more than htmlarea)<BR><BR>btw. if you need some support in integrating it... i could help :)<BR><BR>2005/7/18, Sebastian Himberger <SEBASTIAN.HIMBERGER@GMX.DE>:<BR>> <BR>> Hi,<BR>> <BR>> >However it's a little worrying that an important component of OpenCms<BR>> >has an uncertain future. What are the alternatives?<BR>> <BR>> we are currently working on a new editor integration ( www.fckeditor.net<HTTP: www.fckeditor.net><BR>> ). It's nearly finished and you can expect it to be Open Source when<BR>> it's ready. Some
 nice features of fckeditor are XHTML-syntax and<BR>> CSS-support.<BR>> <BR>> best regards<BR>> Sebastian<BR>> <BR>> <BR>> _______________________________________________<BR>> This mail is send to you from the opencms-dev mailing list<BR>> To change your list options, or to unsubscribe from the list, please visit<BR>> http://mail.opencms.org/mailman/listinfo/opencms-dev<BR>><BR>-------------- next part --------------<BR>An HTML attachment was scrubbed...<BR>URL: http://lists.opencms.org/pipermail/opencms-dev/attachments/20050729/7c62dee3/attachment-0001.html<BR><BR>------------------------------<BR><BR>Message: 5<BR>Date: Fri, 29 Jul 2005 12:13:00 +0100<BR>From: "Jonathan Woods" <JONATHAN.WOODS@SCINTILLANCE.COM><BR>Subject: RE: [opencms-dev] adding a font<BR>To: "'The OpenCms mailing list'" <OPENCMS-DEV@OPENCMS.ORG><BR>Message-ID: <MAILMAN.0.1122717601.18090.OPENCMS-DEV@OPENCMS.ORG><BR>Content-Type: text/plain; charset="us-ascii"<BR><BR>For your info,
 plenty of JSP integration work has already been done - see<BR>http://www.fckeditor.net/download/default.html or<BR>http://sourceforge.net/project/showfiles.php?group_id=75348<BR><HTTP: showfiles.php?group_id="75348&package_id=1295<br" project sourceforge.net>11.> &package_id=129511.<BR><BR>Jon<BR><BR>_____ <BR><BR>From: opencms-dev-bounces@opencms.org<BR>[mailto:opencms-dev-bounces@opencms.org] On Behalf Of Siegfried Puchbauer<BR>Sent: 29 July 2005 11:45<BR>To: The OpenCms mailing list<BR>Subject: Re: [opencms-dev] adding a font<BR><BR><BR>hi!<BR><BR>fckeditor would be very nice.... can you tell me, when you expect that your<BR>integration will be finished. i used fck in a project without opencms...<BR>its very stable (much more than htmlarea)<BR><BR>btw. if you need some support in integrating it... i could help :)<BR><BR><BR>2005/7/18, Sebastian Himberger <SEBASTIAN.HIMBERGER@GMX.DE>: <BR><BR>Hi,<BR><BR>>However it's a little worrying that an important component of
 OpenCms<BR>>has an uncertain future. What are the alternatives?<BR><BR>we are currently working on a new editor integration ( www.fckeditor.net<BR>). It's nearly finished and you can expect it to be Open Source when<BR>it's ready. Some nice features of fckeditor are XHTML-syntax and<BR>CSS-support.<BR><BR>best regards<BR>Sebastian<BR><BR><BR>_______________________________________________<BR>This mail is send to you from the opencms-dev mailing list<BR>To change your list options, or to unsubscribe from the list, please visit<BR>http://mail.opencms.org/mailman/listinfo/opencms-dev<BR><BR><BR><BR>-------------- next part --------------<BR>An HTML attachment was scrubbed...<BR>URL: http://lists.opencms.org/pipermail/opencms-dev/attachments/20050729/df280c12/attachment.html<BR><BR>------------------------------<BR><BR>Message: 6<BR>Date: Fri, 29 Jul 2005 14:25:37 +0300<BR>From: Andras Balogh <ABALOGH@GMAIL.COM><BR>Subject: Re: [opencms-dev] Customise search ERROR [OpenCMS
 6.0]<BR>(resend)<BR>To: The OpenCms mailing list <OPENCMS-DEV@OPENCMS.ORG><BR>Message-ID: <42EA1231.1000105@gmail.com><BR>Content-Type: text/plain; charset=ISO-8859-1; format=flowed<BR><BR>Hello David,<BR><BR>Have You considered using another approach? A solution would be to use a <BR>global search each time and filter out<BR>the results based on the list of files you have at runtime. It would <BR>require some work since the paging functionality will<BR>not work but i think it might work better than what you are trying to <BR>achieve now.<BR>I have never tested it but i have a feeling creating indexes "on the <BR>fly" for each site user search it will be an overkill.<BR><BR>Best regards,<BR>Andras.<BR><BR>David wrote:<BR><BR>> Hi,<BR>> <BR>> I am trying to customise the search behaviour in OpenCMS such that to <BR>> allow an application to dynamically create a new index source and <BR>> search index from an arbitrary set of files in VFS and perform a <BR>>
 search on those files. The code that I am using is given below. When I <BR>> run this from a JSP page it returned with an error saying /No analyzer <BR>> found for language "null". /The trace log for this error is given at <BR>> the bottom which points to method getAnalyzer() in CmsSearchManager. <BR>> So I checked the source code of this method and it looks perfectly <BR>> normal given that I already set the locale for my CmsSearchIndex <BR>> object to 'en'. I even test printing out the analyzer class name (see <BR>> code) using getAnalyzers() method of the CmsSearchManager to make sure <BR>> that analyzer for 'en' locale exists.<BR>> <BR>> So the analyzer is there and the locale has been set for the <BR>> CmsSearchIndex object, why does it still complain about the analyzer <BR>> being not found and weird enough in the error message it seems not <BR>> able to detect the locale ("null" value)? Has anyone experienced this <BR>> before and
 perhaps could provide some insights? Thanks very much for <BR>> your prompt response.<BR>> <BR>> Rgds,<BR>> David.<BR>> <BR><BR><BR><BR>------------------------------<BR><BR>Message: 7<BR>Date: Fri, 29 Jul 2005 13:35:08 +0200<BR>From: Ramos Sa?udo, Fidel <FRAMOS@SADIEL.ES><BR>Subject: [opencms-dev] Strange behaviour importing contents<BR>To: "OpenCms mailing list \(E-mail\)" <OPENCMS-DEV@OPENCMS.ORG><BR>Message-ID:<BR><618FF4C21278E44BB35BD24B86C27796078514EF@CORREO.sadiel.es><BR>Content-Type: text/plain; charset="iso-8859-1"<BR><BR>Hi,<BR><BR>I'm experiencing an unexpected error when I try to import some contents in OpenCMS over Oracle 8.1. I found a solution, but still don't know why it happens.<BR><BR>The background: I exported data from an Oracle DB to XML using BIE. Then imported the XML to OpenCMS using the XMLdb module. After that I manipulate the contents a bit, changing groups and some other things. Then I export several folders to ZIP. Everything goes
 fine.<BR><BR>But, importing some ZIPs produce errors (I'm putting one at the end of the mail). After some research I discover that the troublesome contents are those with more than 450 characters in one of the fields of the original Oracle DB. This field is VARCHAR2(500), but the crazy thing is that the PROPERTY_VALUE field of CMS_PROPERTIES is also VARCHAR2(500), so why doesn't it fit? Why does a content with say 420 characters fit OK and with 450 or more doesn't?<BR><BR>The solution (read hack) given is increasing the PROPERTY_VALUE field to 600 (to have a margin). After this every ZIP imports fine. Data is text, with Spanish accentuated letters and "ñ", but the content is declared as ISO-8859-1 and should be 1-char/1-byte, shouldn't it?<BR><BR>Does someone have any idea about this? I've looked at the OpenCMS classes showed in the Exception trace, thinking that maybe OpenCMS added something to the data prior to importing or inserting at the DB, but I found nothing.<BR><BR>Thanks
 to anyone who can shed some light on this mistery.<BR><BR><BR>The error is:<BR><BR>Importando<BR>/Contenidos_Empleado/Contenido_General/Legislacion/2005/Abril/ContenidoGeneral_3427<BR>Excepcióncom.opencms.core.CmsException: 4 Sql exception. Detailed error:<BR>[com.opencms.file.oraclesql.CmsDbAccess] ORA-01401: inserted value too large<BR>for column<BR>.<BR>root cause was java.sql.SQLException: ORA-01401: inserted value too large for<BR>column<BR>at com.opencms.file.genericSql.CmsDbAccess.writeProperty(CmsDbAccess.java:12005)<BR>at<BR>com.opencms.file.genericSql.CmsDbAccess.writeProperties(CmsDbAccess.java:11937)<BR>at<BR>com.opencms.file.genericSql.CmsResourceBroker.writeResource(CmsResourceBroker.java:7641)<BR>at com.opencms.file.CmsObject.doWriteResource(CmsObject.java:1074)<BR>at com.opencms.file.A_CmsResourceType.importResource(A_CmsResourceType.java:616)<BR>at com.opencms.file.CmsObject.importResource(CmsObject.java:2142)<BR>at
 com.opencms.file.CmsImport.importResource(CmsImport.java:601)<BR>at com.opencms.file.CmsImport.importAllResources(CmsImport.java:786)<BR>at com.opencms.file.CmsImport.importResources(CmsImport.java:188)<BR>at<BR>com.opencms.file.genericSql.CmsResourceBroker.importResources(CmsResourceBroker.java:4162)<BR>at com.opencms.file.CmsObject.importResources(CmsObject.java:2169)<BR>at<BR>com.opencms.workplace.CmsAdminDatabaseImportThread.run(CmsAdminDatabaseImportThread.java:74)<BR>>-----------<BR>>Root cause:<BR>>java.sql.SQLException: ORA-01401: inserted value too large for column<BR>> at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)<BR>> at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)<BR>> at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:582)<BR>> at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1986)<BR>> at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1144)<BR>>
 at<BR>oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2152)<BR>> at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:2035)<BR>> at<BR>oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2876)<BR>> at<BR>oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:609)<BR>> at<BR>org.apache.commons.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:233)<BR>> at<BR>com.opencms.file.genericSql.CmsDbAccess.writeProperty(CmsDbAccess.java:12002)<BR>> at<BR>com.opencms.file.genericSql.CmsDbAccess.writeProperties(CmsDbAccess.java:11937)<BR>> at<BR>com.opencms.file.genericSql.CmsResourceBroker.writeResource(CmsResourceBroker.java:7641)<BR>> at com.opencms.file.CmsObject.doWriteResource(CmsObject.java:1074)<BR>> at<BR>com.opencms.file.A_CmsResourceType.importResource(A_CmsResourceType.java:616)<BR>> at
 com.opencms.file.CmsObject.importResource(CmsObject.java:2142)<BR>> at com.opencms.file.CmsImport.importResource(CmsImport.java:601)<BR>> at com.opencms.file.CmsImport.importAllResources(CmsImport.java:786)<BR>> at com.opencms.file.CmsImport.importResources(CmsImport.java:188)<BR>> at<BR>com.opencms.file.genericSql.CmsResourceBroker.importResources(CmsResourceBroker.java:4162)<BR>> at com.opencms.file.CmsObject.importResources(CmsObject.java:2169)<BR>> at<BR>com.opencms.workplace.CmsAdminDatabaseImportThread.run(CmsAdminDatabaseImportThread.java:74)<BR>java.sql.SQLException: ORA-01401: inserted value too large for column<BR>at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)<BR>at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)<BR>at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:582)<BR>at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1986)<BR>at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1144)<BR>at
 oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2152)<BR>at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:2035)<BR>at<BR>oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2876)<BR>at<BR>oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:609)<BR>at<BR>org.apache.commons.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:233)<BR>at com.opencms.file.genericSql.CmsDbAccess.writeProperty(CmsDbAccess.java:12002)<BR>at<BR>com.opencms.file.genericSql.CmsDbAccess.writeProperties(CmsDbAccess.java:11937)<BR>at<BR>com.opencms.file.genericSql.CmsResourceBroker.writeResource(CmsResourceBroker.java:7641)<BR>at com.opencms.file.CmsObject.doWriteResource(CmsObject.java:1074)<BR>at com.opencms.file.A_CmsResourceType.importResource(A_CmsResourceType.java:616)<BR>at com.opencms.file.CmsObject.importResource(CmsObject.java:2142)<BR>at
 com.opencms.file.CmsImport.importResource(CmsImport.java:601)<BR>at com.opencms.file.CmsImport.importAllResources(CmsImport.java:786)<BR>at com.opencms.file.CmsImport.importResources(CmsImport.java:188)<BR>at<BR>com.opencms.file.genericSql.CmsResourceBroker.importResources(CmsResourceBroker.java:4162)<BR>at com.opencms.file.CmsObject.importResources(CmsObject.java:2169)<BR>at<BR>com.opencms.workplace.CmsAdminDatabaseImportThread.run(CmsAdminDatabaseImportThread.java:74)<BR><BR><BR><BR>Fidel Ramos<BR><BR>------------------------------<BR><BR>Message: 8<BR>Date: Fri, 29 Jul 2005 12:41:54 +0100<BR>From: David <DB92RJ45@GMAIL.COM><BR>Subject: Re: [opencms-dev] Customise search ERROR [OpenCMS 6.0]<BR>(resend)<BR>To: The OpenCms mailing list <OPENCMS-DEV@OPENCMS.ORG><BR>Message-ID: <E402394105072904412D6D8ED5@MAIL.GMAIL.COM><BR>Content-Type: text/plain; charset="iso-8859-1"<BR><BR>Hi Andras,<BR>Thank you for your suggestion which I think will work as an alternative.<BR>However I would
 still very interested in finding out why the other approach <BR>does not work. Knowing this will help better understand how the OpenCMS <BR>Search API works which will come in handy should we need to customise it in <BR>the future for other applications. This type of code is fairly <BR>straight-forward with the original Lucene API itself. Only because OpenCMS <BR>API hides this interface details from us.<BR><BR>=== message truncated ===</BLOCKQUOTE><p>
                <hr size=1> <a href="http://us.rd.yahoo.com/evt=34442/*http://www.yahoo.com/r/hs">Start your day with Yahoo! - make it your home page </a>