From filip.kratochvil at nelasoft.cz Fri Jul 1 00:19:58 2016 From: filip.kratochvil at nelasoft.cz (Filip Kratochvil) Date: Fri, 1 Jul 2016 00:19:58 +0200 Subject: [opencms-dev] How to put whole website on under construction or maintenance In-Reply-To: References: Message-ID: <01ce01d1d31d$8a1f8990$9e5e9cb0$@nelasoft.cz> Hi, this solution can help you: Remove read rights on the entire site (for all users - user group) + set path to page, where users will be redirected. You can do it using login.form property. e.g. login.form=/shared/index.html Or try to set it on front-end server (apache/balancer…). -- S pozdravem / Kind regards Filip Kratochvil ------------------------------------------------ NELASOFT Technologies, s.r.o. E-mail: filip.kratochvil at nelasoft.cz Web: www.nelasoft.cz Twitter: @NELASOFT From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Manoj Sharma Sent: Thursday, June 30, 2016 7:36 PM To: opencms-dev at opencms.org Subject: [opencms-dev] How to put whole website on under construction or maintenance Hi, I have been assigned a task to put website on under maintenance for few days, I have uploaded index.html under /site/default/ and it is working fine for root(/), but other pages like home, about us are still visible if some one typed in url. My management want to put whole website on maintenance and if someone tried to access any page then it should redirect to maintenance page. I did research on web , but did not get any clue. Please help me in this regards. Cheers -------------- next part -------------- An HTML attachment was scrubbed... URL: From john.bieling at gmx.de Fri Jul 1 11:41:15 2016 From: john.bieling at gmx.de (John Bieling) Date: Fri, 1 Jul 2016 11:41:15 +0200 Subject: [opencms-dev] Problem with cms:enable-ade inside included jsp.file Message-ID: Hi, my template.jsp includes another jsp which is using . So basically: template.jsp: ------------------------ <%@page buffer="none" session="true" trimDirectiveWhitespaces="true" import="org.opencms.jsp.CmsJspActionElement, org.opencms.file.CmsObject" %> <%@ taglib prefix="cms" uri="http://www.opencms.org/taglib/cms" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> <% CmsJspActionElement cms = new CmsJspActionElement(pageContext, request, response); CmsObject cmsObject = cms.getCmsObject(); ... some session stuff ... cms.include("other.jsp"); %> other.jsp: ------------------- Stuff What happens: The generated code of the enable-ade is placed before the DOCTYPE definition at the very top. This breaks some css things. If I change the code, so everything happens inside template.jsp, the generated code of the enable-ade is placed inside head. Is there anything I can do to get it working using the include? Thanks John From t.herrmann at alkacon.com Fri Jul 1 11:56:44 2016 From: t.herrmann at alkacon.com (Tobias Herrmann) Date: Fri, 1 Jul 2016 11:56:44 +0200 Subject: [opencms-dev] Problem with cms:enable-ade inside included jsp.file In-Reply-To: References: Message-ID: <57763E5C.7080604@alkacon.com> Hi John, please check if the page directive buffer="none" is set in the second included JSP. If not, it may lead to the observed issue. Kind regards, Tobias ------------------- Tobias Herrmann Visit OpenCms Days 2016 Conference and Expo September 26 to September 27, 2016 in Cologne, Germany http://www.opencms-days.org Alkacon Software GmbH - The OpenCms Experts http://www.alkacon.com - http://www.opencms.org Am 01.07.2016 um 11:41 schrieb John Bieling: > Hi, > > my template.jsp includes another jsp which is using . > So basically: > > template.jsp: > ------------------------ > > <%@page buffer="none" session="true" trimDirectiveWhitespaces="true" > import="org.opencms.jsp.CmsJspActionElement, org.opencms.file.CmsObject" %> > <%@ taglib prefix="cms" uri="http://www.opencms.org/taglib/cms" %> > <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> > <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> > <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> > <% > > CmsJspActionElement cms = new CmsJspActionElement(pageContext, > request, response); > CmsObject cmsObject = cms.getCmsObject(); > > ... some session stuff ... > > cms.include("other.jsp"); > > %> > > > > other.jsp: > ------------------- > > "http://www.w3.org/TR/html4/loose.dtd"> > > > > > > > Stuff > > > > > What happens: The generated code of the enable-ade is placed before the > DOCTYPE definition at the very top. This breaks some css things. > > If I change the code, so everything happens inside template.jsp, the > generated code of the enable-ade is placed inside head. > > Is there anything I can do to get it working using the include? > > > Thanks > John > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > From john.bieling at gmx.de Fri Jul 1 12:02:51 2016 From: john.bieling at gmx.de (John Bieling) Date: Fri, 1 Jul 2016 12:02:51 +0200 Subject: [opencms-dev] Problem with cms:enable-ade inside included jsp.file In-Reply-To: <57763E5C.7080604@alkacon.com> References: <57763E5C.7080604@alkacon.com> Message-ID: Hi Tobias, that did indeed fix my problem, thank you very much! Yours John Am 01.07.2016 um 11:56 schrieb Tobias Herrmann: > Hi John, > > please check if the page directive buffer="none" is set in the second > included JSP. If not, it may lead to the observed issue. > > Kind regards, > > Tobias > > ------------------- > > Tobias Herrmann > > Visit OpenCms Days 2016 Conference and Expo September 26 to September > 27, 2016 in Cologne, Germany http://www.opencms-days.org > > Alkacon Software GmbH - The OpenCms Experts > http://www.alkacon.com - http://www.opencms.org > > Am 01.07.2016 um 11:41 schrieb John Bieling: >> Hi, >> >> my template.jsp includes another jsp which is using . >> So basically: >> >> template.jsp: >> ------------------------ >> >> <%@page buffer="none" session="true" trimDirectiveWhitespaces="true" >> import="org.opencms.jsp.CmsJspActionElement, >> org.opencms.file.CmsObject" %> >> <%@ taglib prefix="cms" uri="http://www.opencms.org/taglib/cms" %> >> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> >> <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> >> <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> >> <% >> >> CmsJspActionElement cms = new CmsJspActionElement(pageContext, >> request, response); >> CmsObject cmsObject = cms.getCmsObject(); >> >> ... some session stuff ... >> >> cms.include("other.jsp"); >> >> %> >> >> >> >> other.jsp: >> ------------------- >> >> > "http://www.w3.org/TR/html4/loose.dtd"> >> >> >> >> >> >> >> Stuff >> >> >> >> >> What happens: The generated code of the enable-ade is placed before the >> DOCTYPE definition at the very top. This breaks some css things. >> >> If I change the code, so everything happens inside template.jsp, the >> generated code of the enable-ade is placed inside head. >> >> Is there anything I can do to get it working using the include? >> >> >> Thanks >> John >> >> _______________________________________________ >> This mail is sent to you from the opencms-dev mailing list >> To change your list options, or to unsubscribe from the list, please >> visit >> http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev >> >> >> > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please > visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > From gaurav.aggarwal at quovantis.com Fri Jul 1 15:29:31 2016 From: gaurav.aggarwal at quovantis.com (Gaurav Aggarwal) Date: Fri, 1 Jul 2016 18:59:31 +0530 Subject: [opencms-dev] Queries regarding few important features Message-ID: Hello, We are planning to use OpenCMS for our web application, which will be for a community of around 40K users. We have following questions that we would like you to answer: 1. Do you provide themes support? Or provide us the way to implement themes in our web app. 2. We would like to have *Authoring and Production* instances of CMS. let us know if this support is available in OpenCMS. 3. Do you provide Statistical information or some google analytic? 4. How do you do slider or banner management? A widget or anything else? 5. How does OpenCMS handle ADA compliance? I am looking forward for a positive reply. Thanks! Regards, *Gaurav Aggarwal|Technical Lead* Quovantis Technologies Mobile: +91 9871006806 *|*Skype ID *: gaurav.prof.work* www.quovantis.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From K.Schliemann at comundus.com Fri Jul 1 18:16:08 2016 From: K.Schliemann at comundus.com (Schliemann, Kai) Date: Fri, 1 Jul 2016 16:16:08 +0000 Subject: [opencms-dev] Queries regarding few important features In-Reply-To: References: Message-ID: Hello Gaurav, 1. OpenCms ships with a rich featured Bootstrap demo template (Apollo). This comes with some features regarding themes (different color of backgrounds…) Based on that the themes features can be implemented to your companies needs. 2. Yes it is. Actually you have that already within one instance of OpenCms, because it separates editorial work from the online version. You need to explicitly publish files to have them online. If you need more, there are additional modules which provide you with clustering features. 3. You can put in any statistics code you like. 4. Create a demo account on http://demo.opencms.org to see the slider used in the demo. But usually such elements are implemented to the customers needs. 5. In OpenCms logic and layout are strictly separated. Meaning only the HTML code you want to appear on the website, appears on the website. So when you create an accessible HTML template, it will be, provided that it is implemented correctly in the OpenCms template, accessible in OpenCms, too. If you need more information or help, you can ask one of the OpenCms partners: http://www.opencms.org/de/partner/ If you don’t mind, it would be nice to answer how you chose OpenCms. Best regards Kai __________________________________________ Kai Schliemann Dipl.-Wirtschaftsingenieur (FH) Teamleiter Softwareentwicklung comundus GmbH Heerstraße 111, D-71332 Waiblingen Zentrale +49 7151 96528-0 Durchwahl +49 7151 96528-120 Fax +49 7151 96528-999 E-Mail k.schliemann at comundus.com Internet www.comundus.com Geschäftsführer Thomas Behrend, Siegfried Fitzel, Klaus Hillemeier Amtsgericht Stuttgart, HRB 264290 __________________________________________ comundus auf: [32-facebook] [32-twitter] [32-googleplus] [32-xing] [32-youtube] Von: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] Im Auftrag von Gaurav Aggarwal Gesendet: Freitag, 1. Juli 2016 15:30 An: opencms-dev at opencms.org Betreff: [opencms-dev] Queries regarding few important features Hello, We are planning to use OpenCMS for our web application, which will be for a community of around 40K users. We have following questions that we would like you to answer: 1. Do you provide themes support? Or provide us the way to implement themes in our web app. 2. We would like to have Authoring and Production instances of CMS. let us know if this support is available in OpenCMS. 3. Do you provide Statistical information or some google analytic? 4. How do you do slider or banner management? A widget or anything else? 5. How does OpenCMS handle ADA compliance? I am looking forward for a positive reply. Thanks! Regards, Gaurav Aggarwal|Technical Lead Quovantis Technologies Mobile: +91 9871006806 |Skype ID: gaurav.prof.work www.quovantis.com -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 269 bytes Desc: image001.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.png Type: image/png Size: 462 bytes Desc: image002.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.png Type: image/png Size: 563 bytes Desc: image003.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.png Type: image/png Size: 3771 bytes Desc: image004.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image005.png Type: image/png Size: 350 bytes Desc: image005.png URL: From agkhan at globalrescue.com Sat Jul 2 07:33:25 2016 From: agkhan at globalrescue.com (Asif G. Khan) Date: Sat, 2 Jul 2016 05:33:25 +0000 Subject: [opencms-dev] Solar Search In-Reply-To: References: <39776a0cad1a4462aedeffde19e80a68@EX1.GlobalRescue.local> Message-ID: <82285f8c1add46a3b1a68b6d8a56c7ab@EX1.GlobalRescue.local> Thanks guys … I solved my issue by not using provided Search Element and coded JSPs myself … Somehow Search Element is not working properly in Online projects with me. Asif G. Khan In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Jose Fermin Athie Campollo Sent: 30 June 2016 19:36 To: The OpenCms mailing list Subject: Re: [opencms-dev] Solar Search Hello Asif, My suggest is to check the index you are using, if the rebuild doesn't work. Regards Fermin Athie El jue., 30 de jun. de 2016 a la(s) 09:32, Antonio Cordeddu > escribió: Hello Asif, I suggest to check rebuild mode for Solr Online and to rebuild it. Kind regards Antonio Cordeddu _______________________________________________ Coranto informatica di Antonio Cordeddu antoniocordeddu at coranto.it Skype: antonio.cordeddu http://www.coranto.it _______________________________________________ On 30/06/2016 12:07, Asif G. Khan wrote: Hello, I have configured Solar Search for my website. It works fine in Offline project and returns results but do not return any results in Online project. Any idea what did I miss to configure? Regards Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From agkhan at globalrescue.com Sat Jul 2 10:26:24 2016 From: agkhan at globalrescue.com (Asif G. Khan) Date: Sat, 2 Jul 2016 08:26:24 +0000 Subject: [opencms-dev] Solar Search In-Reply-To: <82285f8c1add46a3b1a68b6d8a56c7ab@EX1.GlobalRescue.local> References: <39776a0cad1a4462aedeffde19e80a68@EX1.GlobalRescue.local> <82285f8c1add46a3b1a68b6d8a56c7ab@EX1.GlobalRescue.local> Message-ID: <4df7fa75a4e94267b338689cf7a5981e@EX1.GlobalRescue.local> One more issue regarding search …. I have created two JSP files 1. SearchForm.jsp (simple html form) 2. Results.jsp (contains JAVA code for displaying search results) When I publish them, Only SearchForm.jsp gets exported and not Results.jsp. Thanks Asif G. Khan From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Asif G. Khan Sent: 02 July 2016 10:33 To: The OpenCms mailing list Subject: Re: [opencms-dev] Solar Search Thanks guys … I solved my issue by not using provided Search Element and coded JSPs myself … Somehow Search Element is not working properly in Online projects with me. Asif G. Khan In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Jose Fermin Athie Campollo Sent: 30 June 2016 19:36 To: The OpenCms mailing list > Subject: Re: [opencms-dev] Solar Search Hello Asif, My suggest is to check the index you are using, if the rebuild doesn't work. Regards Fermin Athie El jue., 30 de jun. de 2016 a la(s) 09:32, Antonio Cordeddu > escribió: Hello Asif, I suggest to check rebuild mode for Solr Online and to rebuild it. Kind regards Antonio Cordeddu _______________________________________________ Coranto informatica di Antonio Cordeddu antoniocordeddu at coranto.it Skype: antonio.cordeddu http://www.coranto.it _______________________________________________ On 30/06/2016 12:07, Asif G. Khan wrote: Hello, I have configured Solar Search for my website. It works fine in Offline project and returns results but do not return any results in Online project. Any idea what did I miss to configure? Regards Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From agkhan at globalrescue.com Sat Jul 2 12:03:10 2016 From: agkhan at globalrescue.com (Asif G. Khan) Date: Sat, 2 Jul 2016 10:03:10 +0000 Subject: [opencms-dev] Solar Search In-Reply-To: <4df7fa75a4e94267b338689cf7a5981e@EX1.GlobalRescue.local> References: <39776a0cad1a4462aedeffde19e80a68@EX1.GlobalRescue.local> <82285f8c1add46a3b1a68b6d8a56c7ab@EX1.GlobalRescue.local> <4df7fa75a4e94267b338689cf7a5981e@EX1.GlobalRescue.local> Message-ID: <6ab3a2532c2b49339e76699addd026f4@EX1.GlobalRescue.local> I also noticed that both JSPs are being exported to /WEB-INF/jsp folder. How can I call and use a jsp file from inside /Web-INF/jsp folder? I also copied Results.jsp manually into my webapp but its not running and showing 500 error. Asif G. Khan From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Asif G. Khan Sent: 02 July 2016 13:26 To: The OpenCms mailing list Subject: Re: [opencms-dev] Solar Search One more issue regarding search …. I have created two JSP files 1. SearchForm.jsp (simple html form) 2. Results.jsp (contains JAVA code for displaying search results) When I publish them, Only SearchForm.jsp gets exported and not Results.jsp. Thanks Asif G. Khan From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Asif G. Khan Sent: 02 July 2016 10:33 To: The OpenCms mailing list > Subject: Re: [opencms-dev] Solar Search Thanks guys … I solved my issue by not using provided Search Element and coded JSPs myself … Somehow Search Element is not working properly in Online projects with me. Asif G. Khan In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Jose Fermin Athie Campollo Sent: 30 June 2016 19:36 To: The OpenCms mailing list > Subject: Re: [opencms-dev] Solar Search Hello Asif, My suggest is to check the index you are using, if the rebuild doesn't work. Regards Fermin Athie El jue., 30 de jun. de 2016 a la(s) 09:32, Antonio Cordeddu > escribió: Hello Asif, I suggest to check rebuild mode for Solr Online and to rebuild it. Kind regards Antonio Cordeddu _______________________________________________ Coranto informatica di Antonio Cordeddu antoniocordeddu at coranto.it Skype: antonio.cordeddu http://www.coranto.it _______________________________________________ On 30/06/2016 12:07, Asif G. Khan wrote: Hello, I have configured Solar Search for my website. It works fine in Offline project and returns results but do not return any results in Online project. Any idea what did I miss to configure? Regards Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From alexandre.portugal at almg.gov.br Tue Jul 5 21:19:08 2016 From: alexandre.portugal at almg.gov.br (Alexandre Portugal Sousa) Date: Tue, 05 Jul 2016 16:19:08 -0300 Subject: [opencms-dev] cms:contentloop and cms:contentshow deprecated Message-ID: <577C082C.40309@almg.gov.br> Checking current taglib docs on documentation.opencms.org, I noticed cms:contentloop and cms:contentshow are deprecated. From my understanding, these tags should be used together with cms:contentload, which is not deprecated. So, from now on, what is supposed to be the "correct" way to load and loop through content ? Alexandre From agkhan at globalrescue.com Mon Jul 11 08:07:23 2016 From: agkhan at globalrescue.com (Asif G. Khan) Date: Mon, 11 Jul 2016 06:07:23 +0000 Subject: [opencms-dev] Remove

tag from TinyMCE HTML source Message-ID: <00e0be8282374a5ea7e8b43bd430080b@EX1.GlobalRescue.local> Hello, How can I set "force_root_block" to remove

tag from html source in TinyMCE widget? Is there any config file or can I set it at time of initializing .. and how? Regards Asif G. Khan In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Widmann at mediaworx.de Mon Jul 11 15:53:59 2016 From: Widmann at mediaworx.de (Kai Widmann) Date: Mon, 11 Jul 2016 13:53:59 +0000 Subject: [opencms-dev] OpenCms Plugin for IntelliJ - new version 1.9.1 In-Reply-To: References: Message-ID: <9F2E2D84-EFF2-4F99-921F-107D943EC9FA@mediaworx.de> Hey there fellow OpenCms developers and IntelliJ users, there’s a new bugfix release (1.9.1) for the OpenCms Plugin for IntelliJ. The plugin can be updated like any other IntelliJ plugin, so you should be notified by IntelliJ that there’s a new version. This update solves some problems with the plugin’s configuration dialog under IntelliJ 2016.1 and fixes some minor bugs. Please note that the configuration dialog has been moved from „Settings > Other Settings > OpenCms Plugin“ to „Settings > Tools > OpenCms Plugin“. More information about the plugin on GitHub: https://github.com/mediaworx/opencms-intellijplugin/wiki/ Don’t hesitate to contact me if you have any questions. Best regards, Kai Widmann _______________________________________________ Kai Widmann mediaworx berlin AG From K.Schliemann at comundus.com Mon Jul 11 16:20:45 2016 From: K.Schliemann at comundus.com (Schliemann, Kai) Date: Mon, 11 Jul 2016 14:20:45 +0000 Subject: [opencms-dev] OpenCms 10.0.x: Bug in Tabs / Accordion demo? Message-ID: Hi list, I recognized a weird behavior on the demo page "Overview / Demo Website / Element pages / Tabs/Accordion". When I edit a tab or accordion container and change the order of them in the editor mask, the content stays at the same place. Example: There are three accordion elements: 1. Accordions are great 2. Easy to use 3. Powerful grouping options Each of them has an corresponding content element (contentsection): 1. OpenCms has all the features 2. Responsive Apollo template... 3. Java Cup Inc. If I now change the order, so that accordion 1 "Accordions are great" is shown in the third place and "Powerful grouping options" is shown in the first place, the content element 3 "Java Cup Inc." is shown in accordion "Accordions are great" and content element 1 "OpenCms has all the features" is shown in accordion 3 "Powerful grouping options". In short: Accordion 1 shows content 3 Accordion 3 shows content 1 I expect, when I change the order of an accordion / tab the content moves with it. My question is, if this is the intended behavior? If so, please reconsider, because I think this is in no way an intuitive behavior. (And I am aware of the "workaround" changing the label of the accordion / tab. But I think this is not a good option, especially when there are a lot of tabs / accordions). One more question: Has anyone else found this problem and already fixed it? Thanks for your help in advance. Best regards Kai -------------- next part -------------- An HTML attachment was scrubbed... URL: From matzabweb at web.de Tue Jul 12 09:31:03 2016 From: matzabweb at web.de (Arno Nym) Date: Tue, 12 Jul 2016 09:31:03 +0200 Subject: [opencms-dev] OpenCMS 8: broken and invisible folder Message-ID: An HTML attachment was scrubbed... URL: From matzabweb at web.de Tue Jul 12 11:22:22 2016 From: matzabweb at web.de (Arno Nym) Date: Tue, 12 Jul 2016 11:22:22 +0200 Subject: [opencms-dev] OpenCMS 8: broken and invisible folder Message-ID: An HTML attachment was scrubbed... URL: From cbj at touristonline.dk Wed Jul 13 07:49:19 2016 From: cbj at touristonline.dk (=?UTF-8?Q?Christian_Bj=C3=B8rnbak?=) Date: Wed, 13 Jul 2016 07:49:19 +0200 Subject: [opencms-dev] Which scripts are included in scripts-all.min.js? Message-ID: Hi, We would like to upgrade jQuery in the apollo template to align it with the jQuery we use in our own system that we need to integrate with OpenCMS. With OC 9.5 the javascripts was included individually in bootstrap-grid-page.jsp so it was easy to replace jQuery. But in the new apollo template all javascripts are merged and minified into scripts-all.min.js and only bootstrap, jQuery and jQuery UI is included explicitly. I can find jQuery in scripts-all.min.js but comparing it with the included jquery.min.js I see that it is minified with another minifier as the code is organized differently. So search-and-replacing jQuery in script-all.min.js is no easy task. The sourcecode for scripts-all.min.js is as the rest of the apollo module unavailable. Is it a secret which scripts are included in scripts-all.min.js or are you willing to share the sources so I can merge and minify scripts-all.min.js myself? Our other option is to downgrade our jQuery to OpenCMS'. We also use jQuery UI and I am trying to gather if that is included in scripts-all.min.js too? Med venlig hilsen / Kind regards, Christian Bjørnbak Chefudvikler / Lead Developer TouristOnline A/S Islands Brygge 43 2300 København S Denmark TLF: +45 32888230 Dir. TLF: +45 32888235 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Honey.Bhandari at cognizant.com Wed Jul 13 07:51:27 2016 From: Honey.Bhandari at cognizant.com (Honey.Bhandari at cognizant.com) Date: Wed, 13 Jul 2016 05:51:27 +0000 Subject: [opencms-dev] Which scripts are included in scripts-all.min.js? In-Reply-To: References: Message-ID: You can always update the template to use the version that you want to use and not the version which is available! From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Christian Bjørnbak Sent: Wednesday, July 13, 2016 11:19 AM To: The OpenCms mailing list Subject: [opencms-dev] Which scripts are included in scripts-all.min.js? Hi, We would like to upgrade jQuery in the apollo template to align it with the jQuery we use in our own system that we need to integrate with OpenCMS. With OC 9.5 the javascripts was included individually in bootstrap-grid-page.jsp so it was easy to replace jQuery. But in the new apollo template all javascripts are merged and minified into scripts-all.min.js and only bootstrap, jQuery and jQuery UI is included explicitly. I can find jQuery in scripts-all.min.js but comparing it with the included jquery.min.js I see that it is minified with another minifier as the code is organized differently. So search-and-replacing jQuery in script-all.min.js is no easy task. The sourcecode for scripts-all.min.js is as the rest of the apollo module unavailable. Is it a secret which scripts are included in scripts-all.min.js or are you willing to share the sources so I can merge and minify scripts-all.min.js myself? Our other option is to downgrade our jQuery to OpenCMS'. We also use jQuery UI and I am trying to gather if that is included in scripts-all.min.js too? Med venlig hilsen / Kind regards, Christian Bjørnbak Chefudvikler / Lead Developer TouristOnline A/S Islands Brygge 43 2300 København S Denmark TLF: +45 32888230 Dir. TLF: +45 32888235 This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. -------------- next part -------------- An HTML attachment was scrubbed... URL: From cbj at touristonline.dk Wed Jul 13 08:06:47 2016 From: cbj at touristonline.dk (=?UTF-8?Q?Christian_Bj=C3=B8rnbak?=) Date: Wed, 13 Jul 2016 08:06:47 +0200 Subject: [opencms-dev] Which scripts are included in scripts-all.min.js? In-Reply-To: References: Message-ID: How? scripts-all.min.js is kind of blackbox of which scripts are included... So I don't know which scripts to include in the updated template.. Med venlig hilsen / Kind regards, Christian Bjørnbak Chefudvikler / Lead Developer TouristOnline A/S Islands Brygge 43 2300 København S Denmark TLF: +45 32888230 Dir. TLF: +45 32888235 2016-07-13 7:51 GMT+02:00 : > You can always update the template to use the version that you want to use > and not the version which is available! > > > > *From:* opencms-dev-bounces at opencms.org [mailto: > opencms-dev-bounces at opencms.org] *On Behalf Of *Christian Bjørnbak > *Sent:* Wednesday, July 13, 2016 11:19 AM > *To:* The OpenCms mailing list > *Subject:* [opencms-dev] Which scripts are included in scripts-all.min.js? > > > > Hi, > > > > We would like to upgrade jQuery in the apollo template to align it with > the jQuery we use in our own system that we need to integrate with OpenCMS. > > > > With OC 9.5 the javascripts was included individually in > bootstrap-grid-page.jsp so it was easy to replace jQuery. > > > > But in the new apollo template all javascripts are merged and minified > into scripts-all.min.js and only bootstrap, jQuery and jQuery UI is > included explicitly. > > > > I can find jQuery in scripts-all.min.js but comparing it with the included > jquery.min.js I see that it is minified with another minifier as the code > is organized differently. > > > > So search-and-replacing jQuery in script-all.min.js is no easy task. > > > > The sourcecode for scripts-all.min.js is as the rest of the apollo module > unavailable. Is it a secret which scripts are included in > scripts-all.min.js or are you willing to share the sources so I can merge > and minify scripts-all.min.js myself? > > > > Our other option is to downgrade our jQuery to OpenCMS'. We also use > jQuery UI and I am trying to gather if that is included in > scripts-all.min.js too? > > > > > > > > > > Med venlig hilsen / Kind regards, > > Christian Bjørnbak > > Chefudvikler / Lead Developer > TouristOnline A/S > Islands Brygge 43 > 2300 København S > Denmark > TLF: +45 32888230 > Dir. TLF: +45 32888235 > This e-mail and any files transmitted with it are for the sole use of the > intended recipient(s) and may contain confidential and privileged > information. If you are not the intended recipient(s), please reply to the > sender and destroy all copies of the original message. Any unauthorized > review, use, disclosure, dissemination, forwarding, printing or copying of > this email, and/or any action taken in reliance on the contents of this > e-mail is strictly prohibited and may be unlawful. Where permitted by > applicable law, this e-mail and other e-mail communications sent to and > from Cognizant e-mail addresses may be monitored. > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From filip.kratochvil at nelasoft.cz Wed Jul 13 08:22:00 2016 From: filip.kratochvil at nelasoft.cz (Filip Kratochvil) Date: Wed, 13 Jul 2016 08:22:00 +0200 Subject: [opencms-dev] Which scripts are included in scripts-all.min.js? In-Reply-To: References: Message-ID: <004801d1dcce$ddcb7fd0$99627f70$@nelasoft.cz> Hi guys, try to explore github repository. Here ale all source scripts: https://github.com/alkacon/modules-v8/tree/branch_10_0_x/modules/com.alkacon.unify.basics/resources/system/modules/com.alkacon.unify.basics/resources Scripts are minifiend and concatenated using Grunt task manager. Script for that is Gruntfile.js: https://github.com/alkacon/modules-v8/tree/branch_10_0_x/modules/com.alkacon.unify.basics You can replace minified version by file-to-file including. Better way will be download source files, replace only selected scripts (jQuery etc.) and make new JS/CSS build. -- S pozdravem / Kind regards Filip Kratochvil ------------------------------------------------ NELASOFT Technologies, s.r.o. E-mail: filip.kratochvil at nelasoft.cz Web: www.nelasoft.cz Twitter: @NELASOFT From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Christian Bjornbak Sent: Wednesday, July 13, 2016 8:07 AM To: The OpenCms mailing list Subject: Re: [opencms-dev] Which scripts are included in scripts-all.min.js? How? scripts-all.min.js is kind of blackbox of which scripts are included... So I don't know which scripts to include in the updated template.. Med venlig hilsen / Kind regards, Christian Bjørnbak Chefudvikler / Lead Developer TouristOnline A/S Islands Brygge 43 2300 København S Denmark TLF: +45 32888230 Dir. TLF: +45 32888235 2016-07-13 7:51 GMT+02:00 : You can always update the template to use the version that you want to use and not the version which is available! From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Christian Bjørnbak Sent: Wednesday, July 13, 2016 11:19 AM To: The OpenCms mailing list Subject: [opencms-dev] Which scripts are included in scripts-all.min.js? Hi, We would like to upgrade jQuery in the apollo template to align it with the jQuery we use in our own system that we need to integrate with OpenCMS. With OC 9.5 the javascripts was included individually in bootstrap-grid-page.jsp so it was easy to replace jQuery. But in the new apollo template all javascripts are merged and minified into scripts-all.min.js and only bootstrap, jQuery and jQuery UI is included explicitly. I can find jQuery in scripts-all.min.js but comparing it with the included jquery.min.js I see that it is minified with another minifier as the code is organized differently. So search-and-replacing jQuery in script-all.min.js is no easy task. The sourcecode for scripts-all.min.js is as the rest of the apollo module unavailable. Is it a secret which scripts are included in scripts-all.min.js or are you willing to share the sources so I can merge and minify scripts-all.min.js myself? Our other option is to downgrade our jQuery to OpenCMS'. We also use jQuery UI and I am trying to gather if that is included in scripts-all.min.js too? Med venlig hilsen / Kind regards, Christian Bjørnbak Chefudvikler / Lead Developer TouristOnline A/S Islands Brygge 43 2300 København S Denmark TLF: +45 32888230 Dir. TLF: +45 32888235 This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From cbj at touristonline.dk Wed Jul 13 10:01:00 2016 From: cbj at touristonline.dk (=?UTF-8?Q?Christian_Bj=C3=B8rnbak?=) Date: Wed, 13 Jul 2016 10:01:00 +0200 Subject: [opencms-dev] Which scripts are included in scripts-all.min.js? In-Reply-To: <004801d1dcce$ddcb7fd0$99627f70$@nelasoft.cz> References: <004801d1dcce$ddcb7fd0$99627f70$@nelasoft.cz> Message-ID: Hi, Thanks for your help guys! Excuse my noob questions I thought that module-v8 was old and abandoned. And I thought given the name change from com.alkacon.bootstrap to org.opencms.apollo that the modules was rewritten for OC 10. The modules in module-v8 is prefixed com.alkacon.unify but they are the same as distributed as org.opencms.apollo? The files in modules-v8 are 10 months old. Are they older versions of what is distributed as org.opencms.apollo? Med venlig hilsen / Kind regards, Christian Bjørnbak Chefudvikler / Lead Developer TouristOnline A/S Islands Brygge 43 2300 København S Denmark TLF: +45 32888230 Dir. TLF: +45 32888235 2016-07-13 8:22 GMT+02:00 Filip Kratochvil : > Hi guys, > > > > try to explore github repository. > > > > Here ale all source scripts: > > > https://github.com/alkacon/modules-v8/tree/branch_10_0_x/modules/com.alkacon.unify.basics/resources/system/modules/com.alkacon.unify.basics/resources > > > > Scripts are minifiend and concatenated using Grunt task manager. Script > for that is Gruntfile.js: > > > https://github.com/alkacon/modules-v8/tree/branch_10_0_x/modules/com.alkacon.unify.basics > > > > You can replace minified version by file-to-file including. Better way > will be download source files, replace only selected scripts (jQuery etc.) > and make new JS/CSS build. > > > > -- > S pozdravem / Kind regards > Filip Kratochvil > ------------------------------------------------ > NELASOFT Technologies, s.r.o. > E-mail: filip.kratochvil at nelasoft.cz > Web: www.nelasoft.cz > > Twitter: @NELASOFT > > > > *From:* opencms-dev-bounces at opencms.org [mailto: > opencms-dev-bounces at opencms.org] *On Behalf Of *Christian Bjornbak > *Sent:* Wednesday, July 13, 2016 8:07 AM > *To:* The OpenCms mailing list > *Subject:* Re: [opencms-dev] Which scripts are included in > scripts-all.min.js? > > > > How? > > > > scripts-all.min.js is kind of blackbox of which scripts are included... > > > > So I don't know which scripts to include in the updated template.. > > > > > Med venlig hilsen / Kind regards, > > Christian Bjørnbak > > Chefudvikler / Lead Developer > TouristOnline A/S > Islands Brygge 43 > 2300 København S > Denmark > TLF: +45 32888230 > Dir. TLF: +45 32888235 > > > > 2016-07-13 7:51 GMT+02:00 : > > You can always update the template to use the version that you want to use > and not the version which is available! > > > > *From:* opencms-dev-bounces at opencms.org [mailto: > opencms-dev-bounces at opencms.org] *On Behalf Of *Christian Bjørnbak > *Sent:* Wednesday, July 13, 2016 11:19 AM > *To:* The OpenCms mailing list > *Subject:* [opencms-dev] Which scripts are included in scripts-all.min.js? > > > > Hi, > > > > We would like to upgrade jQuery in the apollo template to align it with > the jQuery we use in our own system that we need to integrate with OpenCMS. > > > > With OC 9.5 the javascripts was included individually in > bootstrap-grid-page.jsp so it was easy to replace jQuery. > > > > But in the new apollo template all javascripts are merged and minified > into scripts-all.min.js and only bootstrap, jQuery and jQuery UI is > included explicitly. > > > > I can find jQuery in scripts-all.min.js but comparing it with the included > jquery.min.js I see that it is minified with another minifier as the code > is organized differently. > > > > So search-and-replacing jQuery in script-all.min.js is no easy task. > > > > The sourcecode for scripts-all.min.js is as the rest of the apollo module > unavailable. Is it a secret which scripts are included in > scripts-all.min.js or are you willing to share the sources so I can merge > and minify scripts-all.min.js myself? > > > > Our other option is to downgrade our jQuery to OpenCMS'. We also use > jQuery UI and I am trying to gather if that is included in > scripts-all.min.js too? > > > > > > > > > > Med venlig hilsen / Kind regards, > > Christian Bjørnbak > > Chefudvikler / Lead Developer > TouristOnline A/S > Islands Brygge 43 > 2300 København S > Denmark > TLF: +45 32888230 > Dir. TLF: +45 32888235 > > This e-mail and any files transmitted with it are for the sole use of the > intended recipient(s) and may contain confidential and privileged > information. If you are not the intended recipient(s), please reply to the > sender and destroy all copies of the original message. Any unauthorized > review, use, disclosure, dissemination, forwarding, printing or copying of > this email, and/or any action taken in reliance on the contents of this > e-mail is strictly prohibited and may be unlawful. Where permitted by > applicable law, this e-mail and other e-mail communications sent to and > from Cognizant e-mail addresses may be monitored. > > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From filip.kratochvil at nelasoft.cz Wed Jul 13 10:58:25 2016 From: filip.kratochvil at nelasoft.cz (Filip Kratochvil) Date: Wed, 13 Jul 2016 10:58:25 +0200 Subject: [opencms-dev] Which scripts are included in scripts-all.min.js? In-Reply-To: References: <004801d1dcce$ddcb7fd0$99627f70$@nelasoft.cz> Message-ID: <01bb01d1dce4$b7a89cf0$26f9d6d0$@nelasoft.cz> Hi Chris, you are right, it seems to Alkacon haven’t updated Github repo. I’m not sure if they are same (probably not), you need to compare them (i don’t use OC10 now). -- S pozdravem / Kind regards Filip Kratochvil ------------------------------------------------ NELASOFT Technologies, s.r.o. E-mail: filip.kratochvil at nelasoft.cz Web: www.nelasoft.cz Twitter: @NELASOFT From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Christian Bjornbak Sent: Wednesday, July 13, 2016 10:01 AM To: The OpenCms mailing list Subject: Re: [opencms-dev] Which scripts are included in scripts-all.min.js? Hi, Thanks for your help guys! Excuse my noob questions I thought that module-v8 was old and abandoned. And I thought given the name change from com.alkacon.bootstrap to org.opencms.apollo that the modules was rewritten for OC 10. The modules in module-v8 is prefixed com.alkacon.unify but they are the same as distributed as org.opencms.apollo? The files in modules-v8 are 10 months old. Are they older versions of what is distributed as org.opencms.apollo? Med venlig hilsen / Kind regards, Christian Bjørnbak Chefudvikler / Lead Developer TouristOnline A/S Islands Brygge 43 2300 København S Denmark TLF: +45 32888230 Dir. TLF: +45 32888235 2016-07-13 8:22 GMT+02:00 Filip Kratochvil : Hi guys, try to explore github repository. Here ale all source scripts: https://github.com/alkacon/modules-v8/tree/branch_10_0_x/modules/com.alkacon.unify.basics/resources/system/modules/com.alkacon.unify.basics/resources Scripts are minifiend and concatenated using Grunt task manager. Script for that is Gruntfile.js: https://github.com/alkacon/modules-v8/tree/branch_10_0_x/modules/com.alkacon.unify.basics You can replace minified version by file-to-file including. Better way will be download source files, replace only selected scripts (jQuery etc.) and make new JS/CSS build. -- S pozdravem / Kind regards Filip Kratochvil ------------------------------------------------ NELASOFT Technologies, s.r.o. E-mail: filip.kratochvil at nelasoft.cz Web: www.nelasoft.cz Twitter: @NELASOFT From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Christian Bjornbak Sent: Wednesday, July 13, 2016 8:07 AM To: The OpenCms mailing list Subject: Re: [opencms-dev] Which scripts are included in scripts-all.min.js? How? scripts-all.min.js is kind of blackbox of which scripts are included... So I don't know which scripts to include in the updated template.. Med venlig hilsen / Kind regards, Christian Bjørnbak Chefudvikler / Lead Developer TouristOnline A/S Islands Brygge 43 2300 København S Denmark TLF: +45 32888230 Dir. TLF: +45 32888235 2016-07-13 7:51 GMT+02:00 : You can always update the template to use the version that you want to use and not the version which is available! From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Christian Bjørnbak Sent: Wednesday, July 13, 2016 11:19 AM To: The OpenCms mailing list Subject: [opencms-dev] Which scripts are included in scripts-all.min.js? Hi, We would like to upgrade jQuery in the apollo template to align it with the jQuery we use in our own system that we need to integrate with OpenCMS. With OC 9.5 the javascripts was included individually in bootstrap-grid-page.jsp so it was easy to replace jQuery. But in the new apollo template all javascripts are merged and minified into scripts-all.min.js and only bootstrap, jQuery and jQuery UI is included explicitly. I can find jQuery in scripts-all.min.js but comparing it with the included jquery.min.js I see that it is minified with another minifier as the code is organized differently. So search-and-replacing jQuery in script-all.min.js is no easy task. The sourcecode for scripts-all.min.js is as the rest of the apollo module unavailable. Is it a secret which scripts are included in scripts-all.min.js or are you willing to share the sources so I can merge and minify scripts-all.min.js myself? Our other option is to downgrade our jQuery to OpenCMS'. We also use jQuery UI and I am trying to gather if that is included in scripts-all.min.js too? Med venlig hilsen / Kind regards, Christian Bjørnbak Chefudvikler / Lead Developer TouristOnline A/S Islands Brygge 43 2300 København S Denmark TLF: +45 32888230 Dir. TLF: +45 32888235 This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From agkhan at globalrescue.com Thu Jul 14 06:56:07 2016 From: agkhan at globalrescue.com (Asif G. Khan) Date: Thu, 14 Jul 2016 04:56:07 +0000 Subject: [opencms-dev] Cloning Demo Blog Message-ID: <327cfe71e75249a78e2148b81b1514ef@EX1.GlobalRescue.local> Hello guys, I am using OpenCMS 10. How can I clone demo blog into my own site? I tried copying "blog" folder from demo site into mine but didn't work. Searched on google but could not find any specific tutorial/doc . Can someone briefly tell me steps on how to clone demo blog into my own site. Thanks Asif Khan -------------- next part -------------- An HTML attachment was scrubbed... URL: From kksjtu at gmail.com Fri Jul 15 16:14:34 2016 From: kksjtu at gmail.com (Qi Zhang) Date: Fri, 15 Jul 2016 16:14:34 +0200 Subject: [opencms-dev] File path in opencms Message-ID: Hi all, I want to upload something in the system to be download. And I wrote a piece of JSP to handle it. But I don't know how to get the path of the file so that I can open it with FileInputStream. Like in this picture, I want to put the download.jpg to be download. And the JSP is in the same fold under "login". Thanks a lot! Regards, Qi ​ -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: opencmsQUestion.PNG Type: image/png Size: 25396 bytes Desc: not available URL: From kiran.blgt at gmail.com Mon Jul 18 11:33:23 2016 From: kiran.blgt at gmail.com (kiran g) Date: Mon, 18 Jul 2016 02:33:23 -0700 (MST) Subject: [opencms-dev] File path in opencms In-Reply-To: References: Message-ID: <1468834403196-26358.post@n3.nabble.com> Hi, If you need the contents of the file, you can get it in a byte array using something like the following: CmsJspActionElement cms = new CmsJspActionElement(pageContext, request, response); CmsObject cmso = cms.getCmsObject(); CmsFile cmsFile= cmso.readFile("/login/download.jpg"); byte[] contents=cmsFile.getContents(); You can then write the byte array to FileOutputStream. ----- Cheers, Kiran -- View this message in context: http://opencms.996256.n3.nabble.com/File-path-in-opencms-tp26357p26358.html Sent from the OpenCMS mailing list archive at Nabble.com. From m.emmerich at alkacon.com Mon Jul 18 11:56:31 2016 From: m.emmerich at alkacon.com (Michael Emmerich) Date: Mon, 18 Jul 2016 11:56:31 +0200 Subject: [opencms-dev] OpenCms Days 2016: Registration is open now! In-Reply-To: <578CA66B.2020004@alkacon.com> References: <578CA66B.2020004@alkacon.com> Message-ID: <578CA7CF.4040506@alkacon.com> Dear all, as we have already informed you, this years OpenCms Days will take place in September from Monday 26 to Tuesday 27 in Cologne. Highlight of the conference will be the presentation of OpenCms 10.5. We have now opened the registration on http://opencms-days.org. Just take a look and find all information around the conference, sponsoring options and the call for papers. We are looking forward to welcoming you in Cologne in September. Kind regards, Michael -- Michael Emmerich Alkacon Software GmbH - The OpenCms Experts http://www.alkacon.com - http://www.opencms.org From kksjtu at gmail.com Tue Jul 19 00:42:30 2016 From: kksjtu at gmail.com (Qi Zhang) Date: Tue, 19 Jul 2016 00:42:30 +0200 Subject: [opencms-dev] File path in opencms In-Reply-To: <1468834403196-26358.post@n3.nabble.com> References: <1468834403196-26358.post@n3.nabble.com> Message-ID: Hi Kiran, thank you so much! You've done me a great favor! ;) Cheers, Qi 2016-07-18 11:33 GMT+02:00 kiran g : > Hi, > > If you need the contents of the file, you can get it in a byte array using > something like the following: > > CmsJspActionElement cms = new CmsJspActionElement(pageContext, request, > response); > CmsObject cmso = cms.getCmsObject(); > CmsFile cmsFile= cmso.readFile("/login/download.jpg"); > byte[] contents=cmsFile.getContents(); > > You can then write the byte array to FileOutputStream. > > > > ----- > Cheers, > Kiran > -- > View this message in context: > http://opencms.996256.n3.nabble.com/File-path-in-opencms-tp26357p26358.html > Sent from the OpenCMS mailing list archive at Nabble.com. > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kiran.blgt at gmail.com Tue Jul 19 13:39:09 2016 From: kiran.blgt at gmail.com (kiran g) Date: Tue, 19 Jul 2016 04:39:09 -0700 (MST) Subject: [opencms-dev] Form based authentication Message-ID: <1468928349260-26361.post@n3.nabble.com> Hi, I need to secure some pages of my site, asking for login in order for the user to view it. I have provided the 'login-form' property for these pages, but the pages are still unsecured. What is the correct way of using the 'login-form' property? Is there any other configuration values to be set for this form-based authentication to work? Thanks. ----- Cheers, Kiran -- View this message in context: http://opencms.996256.n3.nabble.com/Form-based-authentication-tp26361.html Sent from the OpenCMS mailing list archive at Nabble.com. From Honey.Bhandari at cognizant.com Tue Jul 19 13:45:53 2016 From: Honey.Bhandari at cognizant.com (Honey.Bhandari at cognizant.com) Date: Tue, 19 Jul 2016 11:45:53 +0000 Subject: [opencms-dev] Form based authentication In-Reply-To: <1468928349260-26361.post@n3.nabble.com> References: <1468928349260-26361.post@n3.nabble.com> Message-ID: deny access to guess groups to the parent folder. Regards Honey -----Original Message----- From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of kiran g Sent: Tuesday, July 19, 2016 5:09 PM To: opencms-dev at opencms.org Subject: [opencms-dev] Form based authentication Hi, I need to secure some pages of my site, asking for login in order for the user to view it. I have provided the 'login-form' property for these pages, but the pages are still unsecured. What is the correct way of using the 'login-form' property? Is there any other configuration values to be set for this form-based authentication to work? Thanks. ----- Cheers, Kiran -- View this message in context: http://opencms.996256.n3.nabble.com/Form-based-authentication-tp26361.html Sent from the OpenCMS mailing list archive at Nabble.com. _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. From gfrancis2 at cancercare.mb.ca Tue Jul 19 20:21:30 2016 From: gfrancis2 at cancercare.mb.ca (Gratian Francis) Date: Tue, 19 Jul 2016 18:21:30 +0000 Subject: [opencms-dev] Cloning Demo Modules and adding Resource and Content Types from the clones in OpenCms 10 Message-ID: Hello, I'm completely new to using OpenCms, and what I'm attempting to do is clone the demo Apollo template modules so that I can adjust and reuse the content types such as the blog, the lists, events, as well as reuse the content types that wrap the bootstrap layout, and reuse and adjust the formatters, after cloning, exporting, making a few adjustments and then importing the changes back into OpenCms, all the contents in the "Add Content" menu in the page editor that are from the newly cloned & adjusted modules are greyed out / not selectable. Did I not select the right settings when cloning? Or are there other steps that I must take? Or am I supposed to re-Add the resource types in the edit module menu? Because if I try that I get a prompt say the resource type already exists. Thanks, Gratian Francis -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- This email and/or any documents in this transmission is intended for the addressee(s) only and may contain legally privileged or confidential information. Any unauthorized use, disclosure, distribution, copying or dissemination is strictly prohibited. If you receive this transmission in error, please notify the sender immediately and return the original. Ce courriel et tout document dans cette transmission est destiné à la personne ou aux personnes à qui il est adressé. Il peut contenir des informations privilégiées ou confidentielles. Toute utilisation, divulgation, distribution, copie, ou diffusion non autorisée est strictement défendue. Si vous n'êtes pas le destinataire de ce message, veuillez en informer l'expéditeur immédiatement et lui remettre l'original. -------------- next part -------------- An HTML attachment was scrubbed... URL: From kiran.blgt at gmail.com Wed Jul 20 06:39:21 2016 From: kiran.blgt at gmail.com (kiran g) Date: Tue, 19 Jul 2016 21:39:21 -0700 (MST) Subject: [opencms-dev] Form based authentication In-Reply-To: References: <1468928349260-26361.post@n3.nabble.com> Message-ID: <1468989561308-26364.post@n3.nabble.com> Thank you. That was exactly what we were missing. ----- Cheers, Kiran -- View this message in context: http://opencms.996256.n3.nabble.com/Form-based-authentication-tp26361p26364.html Sent from the OpenCMS mailing list archive at Nabble.com. From Sascha.Haertling at gmx.net Wed Jul 20 10:13:55 2016 From: Sascha.Haertling at gmx.net (=?UTF-8?Q?=22Sascha_H=C3=A4rtling=22?=) Date: Wed, 20 Jul 2016 10:13:55 +0200 Subject: [opencms-dev] Best way to store data in cms request. Message-ID: An HTML attachment was scrubbed... URL: From mariogarcia.ieci at gmail.com Thu Jul 21 13:27:36 2016 From: mariogarcia.ieci at gmail.com (=?UTF-8?Q?Mario_Garc=C3=ADa_S=C3=A1nchez?=) Date: Thu, 21 Jul 2016 13:27:36 +0200 Subject: [opencms-dev] Solar Search In-Reply-To: <6ab3a2532c2b49339e76699addd026f4@EX1.GlobalRescue.local> References: <39776a0cad1a4462aedeffde19e80a68@EX1.GlobalRescue.local> <82285f8c1add46a3b1a68b6d8a56c7ab@EX1.GlobalRescue.local> <4df7fa75a4e94267b338689cf7a5981e@EX1.GlobalRescue.local> <6ab3a2532c2b49339e76699addd026f4@EX1.GlobalRescue.local> Message-ID: Hello, I have the same problem with Online search results, it works fine in Offline, but i havent any results in Online projet. What can i do? is it a bug in the opencms 10 api? Regards 2016-07-02 12:03 GMT+02:00 Asif G. Khan : > I also noticed that both JSPs are being exported to /WEB-INF/jsp folder. > > > > How can I call and use a jsp file from inside /Web-INF/jsp folder? > > > > I also copied Results.jsp manually into my webapp but its not running and > showing 500 error. > > > > > > > > *Asif G. Khan* > > > > *From:* opencms-dev-bounces at opencms.org [mailto: > opencms-dev-bounces at opencms.org] *On Behalf Of *Asif G. Khan > *Sent:* 02 July 2016 13:26 > > *To:* The OpenCms mailing list > *Subject:* Re: [opencms-dev] Solar Search > > > > One more issue regarding search …. > > > > I have created two JSP files > > 1. SearchForm.jsp (simple html form) > > 2. Results.jsp (contains JAVA code for displaying search results) > > > > When I publish them, Only SearchForm.jsp gets exported and not Results.jsp. > > > > > > Thanks > > > > *Asif G. Khan* > > > > > > *From:* opencms-dev-bounces at opencms.org [ > mailto:opencms-dev-bounces at opencms.org ] *On > Behalf Of *Asif G. Khan > *Sent:* 02 July 2016 10:33 > *To:* The OpenCms mailing list > *Subject:* Re: [opencms-dev] Solar Search > > > > Thanks guys … I solved my issue by not using provided Search Element and > coded JSPs myself … Somehow Search Element is not working properly in > Online projects with me. > > > > *Asif G. Khan* > > > > In the event of an emergency, please contact the Global Rescue Operations > Center at 617-459-4200 > > > > *CONFIDENTIALITY & PRIVACY NOTICE* - The information transmitted in this > email is intended only for the person or entity to which it is addressed > and may contain confidential, proprietary and/or privileged material. > > Any review, retransmission, dissemination or other use of or taking of any > action in reliance upon this information by persons or entities other than > the intended recipient is prohibited. > > If you received this email in error, please advise the sender and > permanently delete this message, all copies and any attachments from your > records immediately. > > > > *From:* opencms-dev-bounces at opencms.org [ > mailto:opencms-dev-bounces at opencms.org ] *On > Behalf Of *Jose Fermin Athie Campollo > *Sent:* 30 June 2016 19:36 > *To:* The OpenCms mailing list > *Subject:* Re: [opencms-dev] Solar Search > > > > Hello Asif, > > > > My suggest is to check the index you are using, if the rebuild doesn't > work. > > > > Regards > > Fermin Athie > > > > El jue., 30 de jun. de 2016 a la(s) 09:32, Antonio Cordeddu < > antoniocordeddu at coranto.it> escribió: > > Hello Asif, > > I suggest to check rebuild mode for Solr Online and to rebuild it. > > Kind regards > Antonio Cordeddu > > > > _______________________________________________ > > Coranto informatica di Antonio Cordeddu > > antoniocordeddu at coranto.it > > Skype: antonio.cordeddu > > http://www.coranto.it > > _______________________________________________ > > > > > On 30/06/2016 12:07, Asif G. Khan wrote: > > Hello, > > > > I have configured Solar Search for my website. It works fine in Offline > project and returns results but do not return any results in Online project. > > Any idea what did I miss to configure? > > > > Regards > > > > *Asif G. Khan* > > Associate Architect > > Global Rescue LLC > > Ph: 92-51-2804125 > > agkhan at globalrescue.com > > > > In the event of an emergency, please contact the Global Rescue Operations > Center at 617-459-4200 > > > > *CONFIDENTIALITY & PRIVACY NOTICE* - The information transmitted in this > email is intended only for the person or entity to which it is addressed > and may contain confidential, proprietary and/or privileged material. > > Any review, retransmission, dissemination or other use of or taking of any > action in reliance upon this information by persons or entities other than > the intended recipient is prohibited. > > If you received this email in error, please advise the sender and > permanently delete this message, all copies and any attachments from your > records immediately. > > > > > > _______________________________________________ > > This mail is sent to you from the opencms-dev mailing list > > To change your list options, or to unsubscribe from the list, please visit > > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > > > > > > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From agkhan at globalrescue.com Thu Jul 21 15:46:00 2016 From: agkhan at globalrescue.com (Asif G. Khan) Date: Thu, 21 Jul 2016 13:46:00 +0000 Subject: [opencms-dev] Solar Search In-Reply-To: References: <39776a0cad1a4462aedeffde19e80a68@EX1.GlobalRescue.local> <82285f8c1add46a3b1a68b6d8a56c7ab@EX1.GlobalRescue.local> <4df7fa75a4e94267b338689cf7a5981e@EX1.GlobalRescue.local> <6ab3a2532c2b49339e76699addd026f4@EX1.GlobalRescue.local> Message-ID: <70b5790eb9e74e6b96e0a71d8aa9e47c@EX1.GlobalRescue.local> Hello Mario, My problem solved as I was using exported pages assuming them as “Online project”. So as Exported site contains static pages therefore we cannot Run JSPs in it. I solved by not exporting anything and exposed Online project as Public site. The problem is that although being too old project OpenCMS does not have a concise documentation and tutorials. Mostly you have to explore things by yourself. Regards Asif G. Khan Associate Architect Global Rescue LLC From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Mario García Sánchez Sent: 21 July 2016 16:28 To: The OpenCms mailing list Subject: Re: [opencms-dev] Solar Search Hello, I have the same problem with Online search results, it works fine in Offline, but i havent any results in Online projet. What can i do? is it a bug in the opencms 10 api? Regards 2016-07-02 12:03 GMT+02:00 Asif G. Khan >: I also noticed that both JSPs are being exported to /WEB-INF/jsp folder. How can I call and use a jsp file from inside /Web-INF/jsp folder? I also copied Results.jsp manually into my webapp but its not running and showing 500 error. Asif G. Khan From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Asif G. Khan Sent: 02 July 2016 13:26 To: The OpenCms mailing list > Subject: Re: [opencms-dev] Solar Search One more issue regarding search …. I have created two JSP files 1. SearchForm.jsp (simple html form) 2. Results.jsp (contains JAVA code for displaying search results) When I publish them, Only SearchForm.jsp gets exported and not Results.jsp. Thanks Asif G. Khan From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Asif G. Khan Sent: 02 July 2016 10:33 To: The OpenCms mailing list > Subject: Re: [opencms-dev] Solar Search Thanks guys … I solved my issue by not using provided Search Element and coded JSPs myself … Somehow Search Element is not working properly in Online projects with me. Asif G. Khan In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Jose Fermin Athie Campollo Sent: 30 June 2016 19:36 To: The OpenCms mailing list > Subject: Re: [opencms-dev] Solar Search Hello Asif, My suggest is to check the index you are using, if the rebuild doesn't work. Regards Fermin Athie El jue., 30 de jun. de 2016 a la(s) 09:32, Antonio Cordeddu > escribió: Hello Asif, I suggest to check rebuild mode for Solr Online and to rebuild it. Kind regards Antonio Cordeddu _______________________________________________ Coranto informatica di Antonio Cordeddu antoniocordeddu at coranto.it Skype: antonio.cordeddu http://www.coranto.it _______________________________________________ On 30/06/2016 12:07, Asif G. Khan wrote: Hello, I have configured Solar Search for my website. It works fine in Offline project and returns results but do not return any results in Online project. Any idea what did I miss to configure? Regards Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From K.Schliemann at comundus.com Thu Jul 21 16:46:29 2016 From: K.Schliemann at comundus.com (Schliemann, Kai) Date: Thu, 21 Jul 2016 14:46:29 +0000 Subject: [opencms-dev] Solar Search In-Reply-To: <70b5790eb9e74e6b96e0a71d8aa9e47c@EX1.GlobalRescue.local> References: <39776a0cad1a4462aedeffde19e80a68@EX1.GlobalRescue.local> <82285f8c1add46a3b1a68b6d8a56c7ab@EX1.GlobalRescue.local> <4df7fa75a4e94267b338689cf7a5981e@EX1.GlobalRescue.local> <6ab3a2532c2b49339e76699addd026f4@EX1.GlobalRescue.local> <70b5790eb9e74e6b96e0a71d8aa9e47c@EX1.GlobalRescue.local> Message-ID: Hi guys, there should be no problem with JSPs being exported or not. Usually JSPs are never exported, but saved in WEB-INF/JSP. This is kind of a caching mechanism. So when your search does not work, this could have several reasons. Check the following: 1. Are you searching in the correct index (check your “search.jsp” and / or the property “search.index” of the file your search.jsp is requested from (some index.html in sites/default/)? 2. Is the index you are searching in filled with data (check with luke)? 3. You could also check with handleSolrSelect, if you get results (see http://documentation.opencms.org/opencms-documentation/solr-search-integration/ for details) HTH Best regards Kai Von: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] Im Auftrag von Asif G. Khan Gesendet: Donnerstag, 21. Juli 2016 15:46 An: The OpenCms mailing list Betreff: Re: [opencms-dev] Solar Search Hello Mario, My problem solved as I was using exported pages assuming them as “Online project”. So as Exported site contains static pages therefore we cannot Run JSPs in it. I solved by not exporting anything and exposed Online project as Public site. The problem is that although being too old project OpenCMS does not have a concise documentation and tutorials. Mostly you have to explore things by yourself. Regards Asif G. Khan Associate Architect Global Rescue LLC From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Mario García Sánchez Sent: 21 July 2016 16:28 To: The OpenCms mailing list > Subject: Re: [opencms-dev] Solar Search Hello, I have the same problem with Online search results, it works fine in Offline, but i havent any results in Online projet. What can i do? is it a bug in the opencms 10 api? Regards 2016-07-02 12:03 GMT+02:00 Asif G. Khan >: I also noticed that both JSPs are being exported to /WEB-INF/jsp folder. How can I call and use a jsp file from inside /Web-INF/jsp folder? I also copied Results.jsp manually into my webapp but its not running and showing 500 error. Asif G. Khan From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Asif G. Khan Sent: 02 July 2016 13:26 To: The OpenCms mailing list > Subject: Re: [opencms-dev] Solar Search One more issue regarding search …. I have created two JSP files 1. SearchForm.jsp (simple html form) 2. Results.jsp (contains JAVA code for displaying search results) When I publish them, Only SearchForm.jsp gets exported and not Results.jsp. Thanks Asif G. Khan From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Asif G. Khan Sent: 02 July 2016 10:33 To: The OpenCms mailing list > Subject: Re: [opencms-dev] Solar Search Thanks guys … I solved my issue by not using provided Search Element and coded JSPs myself … Somehow Search Element is not working properly in Online projects with me. Asif G. Khan In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Jose Fermin Athie Campollo Sent: 30 June 2016 19:36 To: The OpenCms mailing list > Subject: Re: [opencms-dev] Solar Search Hello Asif, My suggest is to check the index you are using, if the rebuild doesn't work. Regards Fermin Athie El jue., 30 de jun. de 2016 a la(s) 09:32, Antonio Cordeddu > escribió: Hello Asif, I suggest to check rebuild mode for Solr Online and to rebuild it. Kind regards Antonio Cordeddu _______________________________________________ Coranto informatica di Antonio Cordeddu antoniocordeddu at coranto.it Skype: antonio.cordeddu http://www.coranto.it _______________________________________________ On 30/06/2016 12:07, Asif G. Khan wrote: Hello, I have configured Solar Search for my website. It works fine in Offline project and returns results but do not return any results in Online project. Any idea what did I miss to configure? Regards Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From s.prousteau at eurelis.com Fri Jul 22 10:54:20 2016 From: s.prousteau at eurelis.com (Sandrine Prousteau) Date: Fri, 22 Jul 2016 08:54:20 +0000 Subject: [opencms-dev] New OpenCms documentation on Stackoverflow ? Message-ID: Hi all devs ! Have you seen that Stackoverflow has opened in Beta a section for global Documentation? I think it should be a goob opportunity to complete Alkacon’s doc… ☺ Sandrine -------------- next part -------------- An HTML attachment was scrubbed... URL: From s.prousteau at eurelis.com Fri Jul 22 10:58:58 2016 From: s.prousteau at eurelis.com (Sandrine Prousteau) Date: Fri, 22 Jul 2016 08:58:58 +0000 Subject: [opencms-dev] New OpenCms documentation on Stackoverflow ? In-Reply-To: References: Message-ID: I’ve forgetten the link : http://stackoverflow.com/documentation/ De : opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] De la part de Sandrine Prousteau Envoyé : vendredi 22 juillet 2016 10:54 À : The OpenCms mailing list Objet : [opencms-dev] New OpenCms documentation on Stackoverflow ? Hi all devs ! Have you seen that Stackoverflow has opened in Beta a section for global Documentation? I think it should be a goob opportunity to complete Alkacon’s doc… ☺ Sandrine -------------- next part -------------- An HTML attachment was scrubbed... URL: From leonardosarti21 at gmail.com Fri Jul 22 19:47:12 2016 From: leonardosarti21 at gmail.com (Leonardo Sarti) Date: Fri, 22 Jul 2016 19:47:12 +0200 Subject: [opencms-dev] Help configuring Opencms with Java and Database Message-ID: Hello, I'm totally new to cms in general and obviously I'm new to opencms, so maybe I'm missing something easy. I'm developing a web application wich requires to connect to a database to store and to get some values that I need to display in my website. I've just configured opencms on my web server and I started creating some pages, now I need to fill the pages with database data. I'm wondering if there's a way to do it easily with opencms interface. I've already developed a web application, but I didn't use a cms so I used to write all the java/jsp code by myself with netbeans, I'm a stranger to this new enviroment. I was also wondering how can I write my own back-end code in java that governs the behaviour of a page: for example to create a login page. In particular I don't know if I need to use eclipse or netbeans to do that and if yes how can I connect the web application to the local IDE. Searching online I've seen the Java Eclipse tutorial related to OpenCMS but that doesn't helped me figuring out what should I do. I'm using OpenCMS 10.0.1. If someone can clarify all theese doubts I would be grateful. Thank you and sorry for my english, it's not my mother tongue. Sincerely, Leonardo. -------------- next part -------------- An HTML attachment was scrubbed... URL: From alasi at consulmedia.it Mon Jul 25 12:25:58 2016 From: alasi at consulmedia.it (Andrea Lasi - ConsulMedia srl) Date: Mon, 25 Jul 2016 12:25:58 +0200 Subject: [opencms-dev] OpenCMS9 and Tomcat7 - Configuration no ROOT Message-ID: <12fd9f0c-4808-6c1f-a34f-be0ccccd5dd9@consulmedia.it> Hi, I have this server configuration: - Tomcat7 - Apache 2.4 - OpenCMS 9.5.4 I need to remove {CONTEXT_NAME}/opencms from URL. With Tomcat6 Apache OpenCMS 9.5.x I use this configuration WEB-INF/config/opencms-importexport.xml /// // /export// // // // ...// /// WEB-INF/config/opencms-system.xml /// //http://{DOMAIN}// // /sites/default/// // // // ...// /// VirtualHost /// // ServerAdmin info@{MY-DOMAIN-NAME}.com// // ServerName www.{MY-DOMAIN-NAME}.com// // ServerAlias {MY-DOMAIN-NAME}.com// // ErrorLog ${APACHE_LOG_DIR}/{MY-DOMAIN-NAME}.com-error_log// // CustomLog ${APACHE_LOG_DIR}/{MY-DOMAIN-NAME}AWS.com-access_log combined// // DirectoryIndex index.html// // // # If the requested URI is located in the resources folder, do not forward the request// // SetEnvIfNoCase Request_URI ^/{MY-CONTEXT-NAME}/resources/.*$ no-jk// // // # If the requested URI is static content do not forward the request// // SetEnvIfNoCase Request_URI ^/export/.*$ no-jk// // // RewriteEngine on// // # If the requested URI is NOT located in the resources folder.// // # Prepend an /isgas/opencms to everything that does not already starts with it// // # and force the result to be handled by the next URI-handler ([PT]) (JkMount in this case)// // RewriteCond %{REQUEST_URI} !^/{MY-CONTEXT-NAME}/resources/.*$// // RewriteCond %{REQUEST_URI} !^/export/.*$// // RewriteRule !^/{MY-CONTEXT-NAME}/opencms/(.*)$ /{MY-CONTEXT-NAME}/opencms%{REQUEST_URI} [PT]// // // # These are the settings for static export. If the requested resource is not already// // # statically exported create a new request to the opencms404 handler. This has to be// // # a new request, because the current would net get through mod_jk because of the "no-jk" var.// // RewriteCond %{REQUEST_URI} ^/export/.*$// // RewriteCond "%{DOCUMENT_ROOT}%{REQUEST_FILENAME}" !-f// // RewriteCond "%{DOCUMENT_ROOT}%{REQUEST_FILENAME}/index_export.html" !-f// // RewriteRule .* /{MY-CONTEXT-NAME}/opencms/handle404?exporturi=%{REQUEST_URI}&%{QUERY_STRING} [P]// // // # If the request starts with /{MY-CONTEXT-NAME}/resources, delete the /{MY-CONTEXT-NAME} prefix// // RewriteCond %{REQUEST_URI} ^/{MY-CONTEXT-NAME}/resources/.*$// // RewriteRule ^/{MY-CONTEXT-NAME}/(.*)$ /$1// // DocumentRoot /MY/DOCUMENT/ROOT// // JkMount /* ajpconnector// /// If I use this configuration in Tomcat7 I see the site in online view but if I do the login in http://www.{MY-DOMAIN-NAME}.com/system/login I have no error in logs but I'm not redirect in Workplace (or in the home editable) but I have redirect always in online view. Is it correctable? Can I use OpenCMS9.5.x with Tomcat7 (or 8) anche Apache configuring all as I did with Tomcat6? So I follow this documentation but I have the problem that my OpenCMS can't be the ROOT (I have some OpenCMS instances and I can't put a Tomcat installation for each) http://documentation.opencms.org/opencms-documentation/server-installation/apache-webserver-configuration/ Thanks Andrea -------------- next part -------------- An HTML attachment was scrubbed... URL: From ak at cloudssky.com Mon Jul 25 21:43:20 2016 From: ak at cloudssky.com (Arash Kaffamanesh) Date: Mon, 25 Jul 2016 21:43:20 +0200 Subject: [opencms-dev] OpenCMS9 and Tomcat7 - Configuration no ROOT In-Reply-To: <12fd9f0c-4808-6c1f-a34f-be0ccccd5dd9@consulmedia.it> References: <12fd9f0c-4808-6c1f-a34f-be0ccccd5dd9@consulmedia.it> Message-ID: Hi, I'd a similar issue, and I'd to enable SSL for the workplace. And you might find some information here: https://docs.google.com/document/d/1PUNVQXecxABjf5WNh1xb1CWY-FIBZgOTPO1neIi6EgI/edit#heading=h.r4ba2ls3mq1o Did you set sessionCookiePath="/" in the context tag of context.xml file: $ vi /var/lib/tomcat7/conf/context.xml By the way this OpenCms 9.5.3 Docker image is using OpenJDK 8, Tomcat 8, Apache 2 and MariaDB 10 installation: https://hub.docker.com/r/cloudssky/opencms-stack-local/ HTH, Kind Regards, Arash On Mon, Jul 25, 2016 at 12:25 PM, Andrea Lasi - ConsulMedia srl < alasi at consulmedia.it> wrote: > Hi, > I have this server configuration: > - Tomcat7 > - Apache 2.4 > - OpenCMS 9.5.4 > > I need to remove {CONTEXT_NAME}/opencms from URL. > > With Tomcat6 Apache OpenCMS 9.5.x I use this configuration > > WEB-INF/config/opencms-importexport.xml > ** > * /export* > * * > * ...* > ** > > WEB-INF/config/opencms-system.xml > ** > * http://{DOMAIN}* > * /sites/default/* > * * > * ...* > ** > > VirtualHost > *>* > * ServerAdmin info@{MY-DOMAIN-NAME}.com* > * ServerName www.{MY-DOMAIN-NAME}.com* > * ServerAlias {MY-DOMAIN-NAME}.com* > * ErrorLog ${APACHE_LOG_DIR}/{MY-DOMAIN-NAME}.com-error_log* > * CustomLog ${APACHE_LOG_DIR}/{MY-DOMAIN-NAME}AWS.com-access_log > combined* > * DirectoryIndex index.html* > > * # If the requested URI is located in the resources folder, do not > forward the request* > * SetEnvIfNoCase Request_URI ^/{MY-CONTEXT-NAME}/resources/.*$ no-jk* > > * # If the requested URI is static content do not forward the request* > * SetEnvIfNoCase Request_URI ^/export/.*$ no-jk* > > * RewriteEngine on* > * # If the requested URI is NOT located in the resources folder.* > * # Prepend an /isgas/opencms to everything that does not already > starts with it* > * # and force the result to be handled by the next URI-handler ([PT]) > (JkMount in this case)* > * RewriteCond %{REQUEST_URI} !^/{MY-CONTEXT-NAME}/resources/.*$* > * RewriteCond %{REQUEST_URI} !^/export/.*$* > * RewriteRule !^/{MY-CONTEXT-NAME}/opencms/(.*)$ > /{MY-CONTEXT-NAME}/opencms%{REQUEST_URI} [PT]* > > * # These are the settings for static export. If the requested resource > is not already* > * # statically exported create a new request to the opencms404 handler. > This has to be* > * # a new request, because the current would net get through mod_jk > because of the "no-jk" var.* > * RewriteCond %{REQUEST_URI} ^/export/.*$* > * RewriteCond "%{DOCUMENT_ROOT}%{REQUEST_FILENAME}" !-f* > * RewriteCond "%{DOCUMENT_ROOT}%{REQUEST_FILENAME}/index_export.html" > !-f* > * RewriteRule .* > /{MY-CONTEXT-NAME}/opencms/handle404?exporturi=%{REQUEST_URI}&%{QUERY_STRING} > [P]* > > * # If the request starts with /{MY-CONTEXT-NAME}/resources, delete the > /{MY-CONTEXT-NAME} prefix* > * RewriteCond %{REQUEST_URI} ^/{MY-CONTEXT-NAME}/resources/.*$* > * RewriteRule ^/{MY-CONTEXT-NAME}/(.*)$ /$1* > > * DocumentRoot /MY/DOCUMENT/ROOT* > * JkMount /* ajpconnector* > ** > > If I use this configuration in Tomcat7 I see the site in online view but > if I do the login in http://www.{MY-DOMAIN-NAME}.com/system/login I have > no error in logs but I'm not redirect in Workplace (or in the home > editable) but I have redirect always in online view. Is it correctable? > Can I use OpenCMS9.5.x with Tomcat7 (or 8) anche Apache configuring all as > I did with Tomcat6? > > So I follow this documentation but I have the problem that my OpenCMS > can't be the ROOT (I have some OpenCMS instances and I can't put a Tomcat > installation for each) > > http://documentation.opencms.org/opencms-documentation/server-installation/apache-webserver-configuration/ > > Thanks > Andrea > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alasi at consulmedia.it Mon Jul 25 22:16:48 2016 From: alasi at consulmedia.it (Andrea Lasi) Date: Mon, 25 Jul 2016 22:16:48 +0200 Subject: [opencms-dev] OpenCMS9 and Tomcat7 - Configuration no ROOT In-Reply-To: References: <12fd9f0c-4808-6c1f-a34f-be0ccccd5dd9@consulmedia.it> Message-ID: <14D30952-6A0D-42AA-8C73-CD5ADCE854D5@consulmedia.it> Hi! I've tried with this method (sessionCookiePath="/") some hour ago, in this afternoon, and now It's everything ok! Tomorrow I want to try with Tomcat8 (now I have the version 7) Thanks a lot Andrea Inviato da iPhone > Il giorno 25 lug 2016, alle ore 21:43, Arash Kaffamanesh ha scritto: > > Hi, > > I'd a similar issue, and I'd to enable SSL for the workplace. > > And you might find some information here: > > https://docs.google.com/document/d/1PUNVQXecxABjf5WNh1xb1CWY-FIBZgOTPO1neIi6EgI/edit#heading=h.r4ba2ls3mq1o > > Did you set sessionCookiePath="/" in the context tag of context.xml file: > > $ vi /var/lib/tomcat7/conf/context.xml > > > > > > By the way this OpenCms 9.5.3 Docker image is using OpenJDK 8, Tomcat 8, Apache 2 and MariaDB 10 installation: > > https://hub.docker.com/r/cloudssky/opencms-stack-local/ > > > HTH, > > Kind Regards, > Arash > > > > > > > >> On Mon, Jul 25, 2016 at 12:25 PM, Andrea Lasi - ConsulMedia srl wrote: >> Hi, >> I have this server configuration: >> - Tomcat7 >> - Apache 2.4 >> - OpenCMS 9.5.4 >> >> I need to remove {CONTEXT_NAME}/opencms from URL. >> >> With Tomcat6 Apache OpenCMS 9.5.x I use this configuration >> >> WEB-INF/config/opencms-importexport.xml >> >> /export >> >> ... >> >> >> WEB-INF/config/opencms-system.xml >> >> http://{DOMAIN} >> /sites/default/ >> >> ... >> >> >> VirtualHost >> >> ServerAdmin info@{MY-DOMAIN-NAME}.com >> ServerName www.{MY-DOMAIN-NAME}.com >> ServerAlias {MY-DOMAIN-NAME}.com >> ErrorLog ${APACHE_LOG_DIR}/{MY-DOMAIN-NAME}.com-error_log >> CustomLog ${APACHE_LOG_DIR}/{MY-DOMAIN-NAME}AWS.com-access_log combined >> DirectoryIndex index.html >> >> # If the requested URI is located in the resources folder, do not forward the request >> SetEnvIfNoCase Request_URI ^/{MY-CONTEXT-NAME}/resources/.*$ no-jk >> >> # If the requested URI is static content do not forward the request >> SetEnvIfNoCase Request_URI ^/export/.*$ no-jk >> >> RewriteEngine on >> # If the requested URI is NOT located in the resources folder. >> # Prepend an /isgas/opencms to everything that does not already starts with it >> # and force the result to be handled by the next URI-handler ([PT]) (JkMount in this case) >> RewriteCond %{REQUEST_URI} !^/{MY-CONTEXT-NAME}/resources/.*$ >> RewriteCond %{REQUEST_URI} !^/export/.*$ >> RewriteRule !^/{MY-CONTEXT-NAME}/opencms/(.*)$ /{MY-CONTEXT-NAME}/opencms%{REQUEST_URI} [PT] >> >> # These are the settings for static export. If the requested resource is not already >> # statically exported create a new request to the opencms404 handler. This has to be >> # a new request, because the current would net get through mod_jk because of the "no-jk" var. >> RewriteCond %{REQUEST_URI} ^/export/.*$ >> RewriteCond "%{DOCUMENT_ROOT}%{REQUEST_FILENAME}" !-f >> RewriteCond "%{DOCUMENT_ROOT}%{REQUEST_FILENAME}/index_export.html" !-f >> RewriteRule .* /{MY-CONTEXT-NAME}/opencms/handle404?exporturi=%{REQUEST_URI}&%{QUERY_STRING} [P] >> >> # If the request starts with /{MY-CONTEXT-NAME}/resources, delete the /{MY-CONTEXT-NAME} prefix >> RewriteCond %{REQUEST_URI} ^/{MY-CONTEXT-NAME}/resources/.*$ >> RewriteRule ^/{MY-CONTEXT-NAME}/(.*)$ /$1 >> >> DocumentRoot /MY/DOCUMENT/ROOT >> JkMount /* ajpconnector >> >> >> If I use this configuration in Tomcat7 I see the site in online view but if I do the login in http://www.{MY-DOMAIN-NAME}.com/system/login I have no error in logs but I'm not redirect in Workplace (or in the home editable) but I have redirect always in online view. Is it correctable? >> Can I use OpenCMS9.5.x with Tomcat7 (or 8) anche Apache configuring all as I did with Tomcat6? >> >> So I follow this documentation but I have the problem that my OpenCMS can't be the ROOT (I have some OpenCMS instances and I can't put a Tomcat installation for each) >> http://documentation.opencms.org/opencms-documentation/server-installation/apache-webserver-configuration/ >> >> Thanks >> Andrea >> >> _______________________________________________ >> This mail is sent to you from the opencms-dev mailing list >> To change your list options, or to unsubscribe from the list, please visit >> http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From agkhan at globalrescue.com Tue Jul 26 13:49:00 2016 From: agkhan at globalrescue.com (Asif G. Khan) Date: Tue, 26 Jul 2016 11:49:00 +0000 Subject: [opencms-dev] CmsSolrResultList Issue Message-ID: <9500c1307fe14f5f87dfc97589c2e561@EX1.GlobalRescue.local> I have following code in a JSP page. When I run the page in browser, it does not show anything and instead throws an error "Failed to load the bootstrap javascript: ./VAADIN/vaadinBootstrap.js" <%@ page pageEncoding="UTF-8" %> <%@ page import="org.opencms.main.*" %> <%@ page import="org.opencms.search.*" %> <%@ page import="org.opencms.search.solr.*" %> <%@ page import="org.opencms.jsp.*" %> <%@ page import="java.util.*" %> <%@ page import="java.io.*" %> <% String query="fq=type:Blog-Entry"; CmsSolrResultList results = OpenCms.getSearchManager().getIndexSolr("solr_online").search(getCmsObject(), query); %>

<%= results.size() %>

Thanks Asif G. Khan -------------- next part -------------- An HTML attachment was scrubbed... URL: From kartobi at gmail.com Wed Jul 27 14:16:04 2016 From: kartobi at gmail.com (Tobias Karrer) Date: Wed, 27 Jul 2016 13:16:04 +0100 Subject: [opencms-dev] CmsSolrResultList Issue In-Reply-To: <9500c1307fe14f5f87dfc97589c2e561@EX1.GlobalRescue.local> References: <9500c1307fe14f5f87dfc97589c2e561@EX1.GlobalRescue.local> Message-ID: <5798a60b.ad4ec20a.7df77.0485@mx.google.com> Hi Asif, I think changing "solr_online" to "Solr Online" should solve your problem. Or did you rename the standard index? BTW: Why don’t you use the solr collector in jsp? (see http://documentation.opencms.org/opencms-documentation/solr-search-integration/#1.4) Best, Tobias Von: Asif G. Khan -------------- next part -------------- An HTML attachment was scrubbed... URL: From K.Schliemann at comundus.com Wed Jul 27 21:06:23 2016 From: K.Schliemann at comundus.com (Schliemann, Kai) Date: Wed, 27 Jul 2016 19:06:23 +0000 Subject: [opencms-dev] OpenCms 9.5.2: 502 Proxy error Message-ID: Hi list, After seeing the "publishing progress bar" for about 2 minutes, I get the following error when publishing a folder with subresources: Details Ticket Id: 1469645561062 com.google.gwt.user.client.rpc.StatusCodeException: 502 Proxy Error Proxy Error The proxy server received an invalid response from an upstream server. The proxy server could not handle the request POST /opencms/opencms/org.opencms.ade.publish.CmsPublishService.gwt. Reason: Error reading from remote server IBM_HTTP_Server at cms.blababla.de Port 80 I currently have the problem, that I am not able to publish just one resource. Any hints highly appreciated. Thanks a lot in advance. Best regards Kai -------------- next part -------------- An HTML attachment was scrubbed... URL: From K.Schliemann at comundus.com Thu Jul 28 17:01:55 2016 From: K.Schliemann at comundus.com (Schliemann, Kai) Date: Thu, 28 Jul 2016 15:01:55 +0000 Subject: [opencms-dev] [SOLVED]: OpenCms 9.5.2: 502 Proxy error Message-ID: Hi list, problem solved. Mysqldata partition was full. Best regards Kai Von: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] Im Auftrag von Schliemann, Kai Gesendet: Mittwoch, 27. Juli 2016 21:06 An: The OpenCms mailing list Betreff: [opencms-dev] OpenCms 9.5.2: 502 Proxy error Hi list, After seeing the "publishing progress bar" for about 2 minutes, I get the following error when publishing a folder with subresources: Details Ticket Id: 1469645561062 com.google.gwt.user.client.rpc.StatusCodeException: 502 Proxy Error Proxy Error The proxy server received an invalid response from an upstream server. The proxy server could not handle the request POST /opencms/opencms/org.opencms.ade.publish.CmsPublishService.gwt. Reason: Error reading from remote server IBM_HTTP_Server at cms.blababla.de Port 80 I currently have the problem, that I am not able to publish just one resource. Any hints highly appreciated. Thanks a lot in advance. Best regards Kai -------------- next part -------------- An HTML attachment was scrubbed... URL: From agkhan at globalrescue.com Mon Aug 1 15:17:32 2016 From: agkhan at globalrescue.com (Asif G. Khan) Date: Mon, 1 Aug 2016 13:17:32 +0000 Subject: [opencms-dev] OpenKM Integration Message-ID: <7c96da7ef87f4a6cb8e4dc49cc8c0822@EX1.GlobalRescue.local> Has anyone tried integrating OpenKM with OpenCMS? Any Ideas?? Regards Asif G. Khan -------------- next part -------------- An HTML attachment was scrubbed... URL: From agkhan at globalrescue.com Mon Aug 1 15:28:25 2016 From: agkhan at globalrescue.com (Asif G. Khan) Date: Mon, 1 Aug 2016 13:28:25 +0000 Subject: [opencms-dev] CmsSolrResultList Issue In-Reply-To: <5798a60b.ad4ec20a.7df77.0485@mx.google.com> References: <9500c1307fe14f5f87dfc97589c2e561@EX1.GlobalRescue.local> <5798a60b.ad4ec20a.7df77.0485@mx.google.com> Message-ID: Thanks Tobias, Yes it solved my problem. Actually whenever page has some error in code, the same error message shows up. I just used JSP for quicker experiments. I will definitely use formatters for actual pages. Asif G. Khan From: Tobias Karrer [mailto:kartobi at gmail.com] Sent: 27 July 2016 17:16 To: Asif G. Khan ; opencms-dev at opencms.org Subject: AW: [opencms-dev] CmsSolrResultList Issue Hi Asif, I think changing "solr_online" to "Solr Online" should solve your problem. Or did you rename the standard index? BTW: Why don’t you use the solr collector in jsp? (see http://documentation.opencms.org/opencms-documentation/solr-search-integration/#1.4) Best, Tobias Von: Asif G. Khan Gesendet: Dienstag, 26. Juli 2016 12:49 An: opencms-dev at opencms.org Betreff: [opencms-dev] CmsSolrResultList Issue I have following code in a JSP page. When I run the page in browser, it does not show anything and instead throws an error “Failed to load the bootstrap javascript: ./VAADIN/vaadinBootstrap.js” <%@ page pageEncoding="UTF-8" %> <%@ page import="org.opencms.main.*" %> <%@ page import="org.opencms.search.*" %> <%@ page import="org.opencms.search.solr.*" %> <%@ page import="org.opencms.jsp.*" %> <%@ page import="java.util.*" %> <%@ page import="java.io.*" %> <% String query="fq=type:Blog-Entry"; CmsSolrResultList results = OpenCms.getSearchManager().getIndexSolr("solr_online").search(getCmsObject(), query); %>

<%= results.size() %>

Thanks Asif G. Khan -------------- next part -------------- An HTML attachment was scrubbed... URL: From kucharczyk at silpion.de Tue Aug 2 14:26:27 2016 From: kucharczyk at silpion.de (Martin Kucharczyk) Date: Tue, 2 Aug 2016 14:26:27 +0200 (CEST) Subject: [opencms-dev] OpenCms 9.5.3: auto reload after editing or adding news in a news list In-Reply-To: References: Message-ID: <1722051861.20196919.1470140787267.JavaMail.zimbra@silpion.de> Hello, has anyone found a solutions for this Problem? I am using OpenCms 10.0.1 and it is not working: ${cms.enableReload}

Script result not available after edit or move operation. Page is automatically reloaded.

It show the

content, but it is not reloading Best Regards Martin ----- Ursprüngliche Mail ----- Von: "Kai Schliemann" An: "The OpenCms mailing list" Gesendet: Freitag, 3. Juni 2016 10:58:08 Betreff: Re: [opencms-dev] OpenCms 9.5.3: auto reload after editing or adding news in a news list Hi Antonio, thanks a lot. Unfortunately it is still not working. And I cannot figure out why. On the hand, we have an events list and whenever I create a new entry, it is automatically shown after saving it. And we do not use the enableReload method here. Is there some other setting, which triggers the reload? Best regards Kai Von: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] Im Auftrag von Antonio Cordeddu Gesendet: Dienstag, 31. Mai 2016 10:11 An: The OpenCms mailing list Betreff: Re: [opencms-dev] OpenCms 9.5.3: auto reload after editing or adding news in a news list Hi Kai, you have to test if the page was edited, as in the following piece of code: ${cms.enableReload} This works for me in OpenCms version 9.5.3. I hope this helps you. Kind regards Antonio Cordeddu _______________________________________________ Coranto informatica di Antonio Cordeddu antoniocordeddu at coranto.it http://www.coranto.it _______________________________________________ On 30/05/2016 20:48, Schliemann, Kai wrote: Hi list, does anybody know, how to automatically reload the current page after adding or editing a news in a news list? I placed ${cms.enableReload} inside my news list formatter, but it does not help. I am using 9.5.3. The documentation says: Placing ${cms.enableReload} somewhere in your formatter will result in an automatically page reload when a content is edited (or moved to a different container). Best regards Kai _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From Honey.Bhandari at cognizant.com Tue Aug 2 14:31:07 2016 From: Honey.Bhandari at cognizant.com (Honey.Bhandari at cognizant.com) Date: Tue, 2 Aug 2016 12:31:07 +0000 Subject: [opencms-dev] OpenCms 9.5.3: auto reload after editing or adding news in a news list In-Reply-To: <1722051861.20196919.1470140787267.JavaMail.zimbra@silpion.de> References: <1722051861.20196919.1470140787267.JavaMail.zimbra@silpion.de> Message-ID: I hope you have cms:enableade in your template. What browser are you using? It works for me in Chrome, but sometimes doesn’t work in IE. Regards Honey From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Martin Kucharczyk Sent: Tuesday, August 02, 2016 5:56 PM To: The OpenCms mailing list Subject: Re: [opencms-dev] OpenCms 9.5.3: auto reload after editing or adding news in a news list Hello, has anyone found a solutions for this Problem? I am using OpenCms 10.0.1 and it is not working: ${cms.enableReload}

Script result not available after edit or move operation. Page is automatically reloaded.

It show the

content, but it is not reloading Best Regards Martin ________________________________ Von: "Kai Schliemann" > An: "The OpenCms mailing list" > Gesendet: Freitag, 3. Juni 2016 10:58:08 Betreff: Re: [opencms-dev] OpenCms 9.5.3: auto reload after editing or adding news in a news list Hi Antonio, thanks a lot. Unfortunately it is still not working. And I cannot figure out why. On the hand, we have an events list and whenever I create a new entry, it is automatically shown after saving it. And we do not use the enableReload method here. Is there some other setting, which triggers the reload? Best regards Kai Von: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] Im Auftrag von Antonio Cordeddu Gesendet: Dienstag, 31. Mai 2016 10:11 An: The OpenCms mailing list > Betreff: Re: [opencms-dev] OpenCms 9.5.3: auto reload after editing or adding news in a news list Hi Kai, you have to test if the page was edited, as in the following piece of code: ${cms.enableReload} This works for me in OpenCms version 9.5.3. I hope this helps you. Kind regards Antonio Cordeddu _______________________________________________ Coranto informatica di Antonio Cordeddu antoniocordeddu at coranto.it http://www.coranto.it _______________________________________________ On 30/05/2016 20:48, Schliemann, Kai wrote: Hi list, does anybody know, how to automatically reload the current page after adding or editing a news in a news list? I placed ${cms.enableReload} inside my news list formatter, but it does not help. I am using 9.5.3. The documentation says: Placing ${cms.enableReload} somewhere in your formatter will result in an automatically page reload when a content is edited (or moved to a different container). Best regards Kai _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. -------------- next part -------------- An HTML attachment was scrubbed... URL: From kucharczyk at silpion.de Tue Aug 2 14:49:20 2016 From: kucharczyk at silpion.de (Martin Kucharczyk) Date: Tue, 2 Aug 2016 14:49:20 +0200 (CEST) Subject: [opencms-dev] OpenCms 9.5.3: auto reload after editing or adding news in a news list In-Reply-To: References: <1722051861.20196919.1470140787267.JavaMail.zimbra@silpion.de> Message-ID: <251737040.20199430.1470142160618.JavaMail.zimbra@silpion.de> Yes, cms:enableade is in my template. I was using firefox, but now in chrome it works. Thank you! ----- Ursprüngliche Mail ----- Von: "Honey Bhandari" An: opencms-dev at opencms.org Gesendet: Dienstag, 2. August 2016 14:31:07 Betreff: Re: [opencms-dev] OpenCms 9.5.3: auto reload after editing or adding news in a news list I hope you have cms:enableade in your template. What browser are you using? It works for me in Chrome, but sometimes doesn’t work in IE. Regards Honey From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Martin Kucharczyk Sent: Tuesday, August 02, 2016 5:56 PM To: The OpenCms mailing list Subject: Re: [opencms-dev] OpenCms 9.5.3: auto reload after editing or adding news in a news list Hello, has anyone found a solutions for this Problem? I am using OpenCms 10.0.1 and it is not working: ${cms.enableReload}

Script result not available after edit or move operation. Page is automatically reloaded.

It show the

content, but it is not reloading Best Regards Martin ----- Ursprüngliche Mail ----- Von: "Kai Schliemann" < K.Schliemann at comundus.com > An: "The OpenCms mailing list" < opencms-dev at opencms.org > Gesendet: Freitag, 3. Juni 2016 10:58:08 Betreff: Re: [opencms-dev] OpenCms 9.5.3: auto reload after editing or adding news in a news list Hi Antonio, thanks a lot. Unfortunately it is still not working. And I cannot figure out why. On the hand, we have an events list and whenever I create a new entry, it is automatically shown after saving it. And we do not use the enableReload method here. Is there some other setting, which triggers the reload? Best regards Kai Von: opencms-dev-bounces at opencms.org [ mailto:opencms-dev-bounces at opencms.org ] Im Auftrag von Antonio Cordeddu Gesendet: Dienstag, 31. Mai 2016 10:11 An: The OpenCms mailing list < opencms-dev at opencms.org > Betreff: Re: [opencms-dev] OpenCms 9.5.3: auto reload after editing or adding news in a news list Hi Kai, you have to test if the page was edited, as in the following piece of code: ${cms.enableReload} This works for me in OpenCms version 9.5.3. I hope this helps you. Kind regards Antonio Cordeddu _______________________________________________ Coranto informatica di Antonio Cordeddu antoniocordeddu at coranto.it http://www.coranto.it _______________________________________________ On 30/05/2016 20:48, Schliemann, Kai wrote: Hi list, does anybody know, how to automatically reload the current page after adding or editing a news in a news list? I placed ${cms.enableReload} inside my news list formatter, but it does not help. I am using 9.5.3. The documentation says: Placing ${cms.enableReload} somewhere in your formatter will result in an automatically page reload when a content is edited (or moved to a different container). Best regards Kai _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From kksjtu at gmail.com Tue Aug 2 19:27:07 2016 From: kksjtu at gmail.com (Qi Zhang) Date: Tue, 2 Aug 2016 19:27:07 +0200 Subject: [opencms-dev] dynamic function configuration Message-ID: Hi all, I'm trying to set up dynamic function with the given online documentation . It looks easy, but I'm really puzzeld. 1, so if you want a function detail page, you have to have a module? Cause currently I don't have the permission to create a new module in our system. 2, "*The page is added via the "Add wizard" using the tab "Detail pages". There you'll find the dynamic function with its name as title.*" Where is it? I can't find tab named "Detail pages"... Any help would be appreciated. Thanks in advance! Regards, Qi -------------- next part -------------- An HTML attachment was scrubbed... URL: From bernhard.zebedin at visions2.net Thu Aug 4 12:11:21 2016 From: bernhard.zebedin at visions2.net (Bernhard Zebedin) Date: Thu, 4 Aug 2016 10:11:21 +0000 Subject: [opencms-dev] Detail Pages Message-ID: <1470305481576.70192@visions2.net> Dear all. Is it possible to have detail pages for content which is in shared folder? The thing is... we have a lot of location details which are shared on different websites with different formatters. Solr-Search and all those things works fine... but I cannot create detail pages. If I put the content in e.g. /sites/default/.content/whatever.. then I can use the detail page functionality. A workaround would be having shortcuts in the .content folder... but I don't like this solution. kind regards Bernhard Zebedin -------------- next part -------------- An HTML attachment was scrubbed... URL: From agkhan at globalrescue.com Thu Aug 4 13:43:49 2016 From: agkhan at globalrescue.com (Asif G. Khan) Date: Thu, 4 Aug 2016 11:43:49 +0000 Subject: [opencms-dev] CmsSolrResultList Issue In-Reply-To: References: <9500c1307fe14f5f87dfc97589c2e561@EX1.GlobalRescue.local> <5798a60b.ad4ec20a.7df77.0485@mx.google.com> Message-ID: Having issue with “Keywords” property of files is not being indexed in solr. I cannot find “Keywords_prop” field in search results. Thanks Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Asif G. Khan Sent: 01 August 2016 18:28 To: Tobias Karrer ; opencms-dev at opencms.org Subject: Re: [opencms-dev] CmsSolrResultList Issue Thanks Tobias, Yes it solved my problem. Actually whenever page has some error in code, the same error message shows up. I just used JSP for quicker experiments. I will definitely use formatters for actual pages. Asif G. Khan From: Tobias Karrer [mailto:kartobi at gmail.com] Sent: 27 July 2016 17:16 To: Asif G. Khan >; opencms-dev at opencms.org Subject: AW: [opencms-dev] CmsSolrResultList Issue Hi Asif, I think changing "solr_online" to "Solr Online" should solve your problem. Or did you rename the standard index? BTW: Why don’t you use the solr collector in jsp? (see http://documentation.opencms.org/opencms-documentation/solr-search-integration/#1.4) Best, Tobias Von: Asif G. Khan Gesendet: Dienstag, 26. Juli 2016 12:49 An: opencms-dev at opencms.org Betreff: [opencms-dev] CmsSolrResultList Issue I have following code in a JSP page. When I run the page in browser, it does not show anything and instead throws an error “Failed to load the bootstrap javascript: ./VAADIN/vaadinBootstrap.js” <%@ page pageEncoding="UTF-8" %> <%@ page import="org.opencms.main.*" %> <%@ page import="org.opencms.search.*" %> <%@ page import="org.opencms.search.solr.*" %> <%@ page import="org.opencms.jsp.*" %> <%@ page import="java.util.*" %> <%@ page import="java.io.*" %> <% String query="fq=type:Blog-Entry"; CmsSolrResultList results = OpenCms.getSearchManager().getIndexSolr("solr_online").search(getCmsObject(), query); %>

<%= results.size() %>

Thanks Asif G. Khan -------------- next part -------------- An HTML attachment was scrubbed... URL: From gfrancis2 at cancercare.mb.ca Thu Aug 4 18:53:49 2016 From: gfrancis2 at cancercare.mb.ca (Gratian Francis) Date: Thu, 4 Aug 2016 16:53:49 +0000 Subject: [opencms-dev] Exporting a site Message-ID: Hello, I'd like to export the contents of my site as a module, similar to the Apollo demo contents module, is this done through the static export under database management, or do I have to create a new module and enter the values to the manifest.xml manually? Cheers, Gratian Francis Junior Programmer Analyst CancerCare Manitoba CC40-825 Sherbrook Street Winnipeg, MB R3A 1M5 Ph: 204-784-6403 Cell: 204-794-1230 gfrancis2 at cancercare.mb.ca [CCMB-master-logo-cmyk] Planned Absences: August 5th to August 8th -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 3835 bytes Desc: image001.jpg URL: -------------- next part -------------- This email and/or any documents in this transmission is intended for the addressee(s) only and may contain legally privileged or confidential information. Any unauthorized use, disclosure, distribution, copying or dissemination is strictly prohibited. If you receive this transmission in error, please notify the sender immediately and return the original. Ce courriel et tout document dans cette transmission est destiné à la personne ou aux personnes à qui il est adressé. Il peut contenir des informations privilégiées ou confidentielles. Toute utilisation, divulgation, distribution, copie, ou diffusion non autorisée est strictement défendue. Si vous n'êtes pas le destinataire de ce message, veuillez en informer l'expéditeur immédiatement et lui remettre l'original. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Honey.Bhandari at cognizant.com Thu Aug 4 18:58:11 2016 From: Honey.Bhandari at cognizant.com (Honey.Bhandari at cognizant.com) Date: Thu, 4 Aug 2016 16:58:11 +0000 Subject: [opencms-dev] Exporting a site In-Reply-To: References: Message-ID: You may create a new module and provide the path of the root folder of the site in the resources. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Gratian Francis Sent: Thursday, August 04, 2016 10:24 PM To: 'opencms-dev at opencms.org' Subject: [opencms-dev] Exporting a site Hello, I'd like to export the contents of my site as a module, similar to the Apollo demo contents module, is this done through the static export under database management, or do I have to create a new module and enter the values to the manifest.xml manually? Cheers, Gratian Francis Junior Programmer Analyst CancerCare Manitoba CC40-825 Sherbrook Street Winnipeg, MB R3A 1M5 Ph: 204-784-6403 Cell: 204-794-1230 gfrancis2 at cancercare.mb.ca [CCMB-master-logo-cmyk] Planned Absences: August 5th to August 8th This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 3835 bytes Desc: image001.jpg URL: From ak at cloudssky.com Thu Aug 4 19:03:15 2016 From: ak at cloudssky.com (Arash Kaffamanesh) Date: Thu, 4 Aug 2016 19:03:15 +0200 Subject: [opencms-dev] Exporting a site In-Reply-To: References: Message-ID: Hi You can export your site via the Database Management tool and export your site. [image: Inline image 1] Best, Arash On Thu, Aug 4, 2016 at 6:53 PM, Gratian Francis wrote: > Hello, > > I’d like to export the contents of my site as a module, similar to the > Apollo demo contents module, is this done through the static export under > database management, or do I have to create a new module and enter the > values to the manifest.xml manually? > > > > Cheers, > > > > *Gratian Francis* > > Junior Programmer Analyst > > CancerCare Manitoba > > CC40-825 Sherbrook Street > > Winnipeg, MB R3A 1M5 > > Ph: 204-784-6403 > > Cell: 204-794-1230 > > gfrancis2 at cancercare.mb.ca > > > > [image: CCMB-master-logo-cmyk] > > > > *Planned Absences: * > > August 5th to August 8th > > > > This email and/or any documents in this transmission is intended for the > addressee(s) only and may contain legally privileged or confidential > information. Any unauthorized use, disclosure, distribution, copying or > dissemination is strictly prohibited. If you receive this transmission in > error, please notify the sender immediately and return the original. > > Ce courriel et tout document dans cette transmission est destiné à la > personne ou aux personnes à qui il est adressé. Il peut contenir des > informations privilégiées ou confidentielles. Toute utilisation, > divulgation, distribution, copie, ou diffusion non autorisée est > strictement défendue. Si vous n'êtes pas le destinataire de ce message, > veuillez en informer l'expéditeur immédiatement et lui remettre l'original. > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 3835 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 23853 bytes Desc: not available URL: From athiecampollo at gmail.com Thu Aug 4 21:08:46 2016 From: athiecampollo at gmail.com (Jose Fermin Athie Campollo) Date: Thu, 04 Aug 2016 19:08:46 +0000 Subject: [opencms-dev] CmsSolrResultList Issue In-Reply-To: References: <9500c1307fe14f5f87dfc97589c2e561@EX1.GlobalRescue.local> <5798a60b.ad4ec20a.7df77.0485@mx.google.com> Message-ID: Hi Asif Have you tried? *Reload de index Solr Online *Check the index have the files you needd *Check with the query http://documentation.opencms.org/opencms-documentation/solr-search-integration/#1.2.1 El jue., 4 de ago. de 2016 a la(s) 06:44, Asif G. Khan < agkhan at globalrescue.com> escribió: > Having issue with “Keywords” property of files is not being indexed in > solr. I cannot find “Keywords_prop” field in search results. > > > > Thanks > > > > *Asif G. Khan* > > Associate Architect > > Global Rescue LLC > > Ph: 92-51-2804125 > > agkhan at globalrescue.com > > > > In the event of an emergency, please contact the Global Rescue Operations > Center at 617-459-4200 > > > > *CONFIDENTIALITY & PRIVACY NOTICE* - The information transmitted in this > email is intended only for the person or entity to which it is addressed > and may contain confidential, proprietary and/or privileged material. > > Any review, retransmission, dissemination or other use of or taking of any > action in reliance upon this information by persons or entities other than > the intended recipient is prohibited. > > If you received this email in error, please advise the sender and > permanently delete this message, all copies and any attachments from your > records immediately. > > > > *From:* opencms-dev-bounces at opencms.org [mailto: > opencms-dev-bounces at opencms.org] *On Behalf Of *Asif G. Khan > *Sent:* 01 August 2016 18:28 > *To:* Tobias Karrer ; opencms-dev at opencms.org > *Subject:* Re: [opencms-dev] CmsSolrResultList Issue > > > > Thanks Tobias, Yes it solved my problem. Actually whenever page has some > error in code, the same error message shows up. > > I just used JSP for quicker experiments. I will definitely use formatters > for actual pages. > > > > > > > > *Asif G. Khan* > > *From:* Tobias Karrer [mailto:kartobi at gmail.com ] > *Sent:* 27 July 2016 17:16 > *To:* Asif G. Khan ; opencms-dev at opencms.org > *Subject:* AW: [opencms-dev] CmsSolrResultList Issue > > > > Hi Asif, > > > > I think changing "solr_online" to "Solr Online" should solve your problem. > > Or did you rename the standard index? > > > > BTW: > > Why don’t you use the solr collector in jsp? (see > http://documentation.opencms.org/opencms-documentation/solr-search-integration/#1.4 > ) > > > > Best, > > Tobias > > > > *Von: *Asif G. Khan > *Gesendet: *Dienstag, 26. Juli 2016 12:49 > *An: *opencms-dev at opencms.org > *Betreff: *[opencms-dev] CmsSolrResultList Issue > > > I have following code in a JSP page. When I run the page in browser, it > does not show anything and instead throws an error “Failed to load the > bootstrap javascript: ./VAADIN/vaadinBootstrap > .js” > > > > > > <%@ page pageEncoding="UTF-8" %> > > <%@ page import="org.opencms.main.*" %> > > <%@ page import="org.opencms.search.*" %> > > <%@ page import="org.opencms.search.solr.*" %> > > <%@ page import="org.opencms.jsp.*" %> > > <%@ page import="java.util.*" %> > > <%@ page import="java.io.*" %> > > <% > > String query="fq=type:Blog-Entry"; > > CmsSolrResultList results = > OpenCms.getSearchManager().getIndexSolr("solr_online").search(getCmsObject(), > query); > > %> > >

<%= results.size() %>

> > > > > > > > Thanks > > *Asif G. Khan* > > > > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From agkhan at globalrescue.com Fri Aug 5 06:41:14 2016 From: agkhan at globalrescue.com (Asif G. Khan) Date: Fri, 5 Aug 2016 04:41:14 +0000 Subject: [opencms-dev] CmsSolrResultList Issue In-Reply-To: References: <9500c1307fe14f5f87dfc97589c2e561@EX1.GlobalRescue.local> <5798a60b.ad4ec20a.7df77.0485@mx.google.com> Message-ID: <12cebeecdf1544c0b6a063986cd531e0@EX1.GlobalRescue.local> Fermin, Yes I have indexed many custom fields in schema’s and they are all being indexed but I have requirement to index file property “keywords” along with my custom fields. I am using pre-built solr-online config and standard field config. Regards Asif G. Khan From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Jose Fermin Athie Campollo Sent: 05 August 2016 00:09 To: The OpenCms mailing list ; Tobias Karrer Subject: Re: [opencms-dev] CmsSolrResultList Issue Hi Asif Have you tried? *Reload de index Solr Online *Check the index have the files you needd *Check with the query http://documentation.opencms.org/opencms-documentation/solr-search-integration/#1.2.1 El jue., 4 de ago. de 2016 a la(s) 06:44, Asif G. Khan > escribió: Having issue with “Keywords” property of files is not being indexed in solr. I cannot find “Keywords_prop” field in search results. Thanks Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Asif G. Khan Sent: 01 August 2016 18:28 To: Tobias Karrer >; opencms-dev at opencms.org Subject: Re: [opencms-dev] CmsSolrResultList Issue Thanks Tobias, Yes it solved my problem. Actually whenever page has some error in code, the same error message shows up. I just used JSP for quicker experiments. I will definitely use formatters for actual pages. Asif G. Khan From: Tobias Karrer [mailto:kartobi at gmail.com] Sent: 27 July 2016 17:16 To: Asif G. Khan >; opencms-dev at opencms.org Subject: AW: [opencms-dev] CmsSolrResultList Issue Hi Asif, I think changing "solr_online" to "Solr Online" should solve your problem. Or did you rename the standard index? BTW: Why don’t you use the solr collector in jsp? (see http://documentation.opencms.org/opencms-documentation/solr-search-integration/#1.4) Best, Tobias Von: Asif G. Khan Gesendet: Dienstag, 26. Juli 2016 12:49 An: opencms-dev at opencms.org Betreff: [opencms-dev] CmsSolrResultList Issue I have following code in a JSP page. When I run the page in browser, it does not show anything and instead throws an error “Failed to load the bootstrap javascript: ./VAADIN/vaadinBootstrap.js” <%@ page pageEncoding="UTF-8" %> <%@ page import="org.opencms.main.*" %> <%@ page import="org.opencms.search.*" %> <%@ page import="org.opencms.search.solr.*" %> <%@ page import="org.opencms.jsp.*" %> <%@ page import="java.util.*" %> <%@ page import="java.io.*" %> <% String query="fq=type:Blog-Entry"; CmsSolrResultList results = OpenCms.getSearchManager().getIndexSolr("solr_online").search(getCmsObject(), query); %>

<%= results.size() %>

Thanks Asif G. Khan _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From houcaoyu at 163.com Sun Aug 7 13:19:18 2016 From: houcaoyu at 163.com (houcaoyu) Date: Sun, 7 Aug 2016 19:19:18 +0800 (CST) Subject: [opencms-dev] version :10.0.1. can't access to the site after install Message-ID: <6c648909.2ba5.15664ba7ea2.Coremail.houcaoyu@163.com> hello I'm new to opencms. I'm using version 10.0.1. I followed the install.html in the "opencms-10.0.1.zip" , and installed the server without error with default settings. But after installation, when I access to "http://localhost:8080/opencms/opencms/overview/" , only a white page(no content) was displayed. http://localhost:8080/opencms/opencms/system/login can be normally displayed, but after login, if change the view to "Page Editor", the following page will be displayed. I have tried to reinstall many times, including reinstall tomcat , but doesn't work. please help!~~ Finally, my environment: opencms 10.0.1 tomcat 6.0.45 MySQL 5.7 Caoyu -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 60693 bytes Desc: not available URL: From ak at cloudssky.com Sun Aug 7 14:41:18 2016 From: ak at cloudssky.com (Arash Kaffamanesh) Date: Sun, 7 Aug 2016 14:41:18 +0200 Subject: [opencms-dev] version :10.0.1. can't access to the site after install In-Reply-To: <6c648909.2ba5.15664ba7ea2.Coremail.houcaoyu@163.com> References: <6c648909.2ba5.15664ba7ea2.Coremail.houcaoyu@163.com> Message-ID: Hi, I'd try it with Tomcat 7 or 8 and Java 1.7 or 1.8 Best, Arash On Sun, Aug 7, 2016 at 1:19 PM, houcaoyu wrote: > hello > I'm new to opencms. > I'm using version 10.0.1. > I followed the install.html in the "opencms-10.0.1.zip" , and installed > the server without error with default settings. > But after installation, when I access to "http://localhost:8080/ > opencms/opencms/overview/" > , only a white page(no > content) was displayed. > http://localhost:8080/opencms/opencms/system/login can be normally > displayed, but after login, if change the view to "Page Editor", the > following page will be displayed. > I have tried to reinstall many times, including reinstall tomcat , but > doesn't work. > please help!~~ > > > Finally, my environment: > opencms 10.0.1 > tomcat 6.0.45 > MySQL 5.7 > > > Caoyu > > > > > > > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 60693 bytes Desc: not available URL: From houcaoyu at 163.com Sun Aug 7 15:08:39 2016 From: houcaoyu at 163.com (houcaoyu) Date: Sun, 7 Aug 2016 21:08:39 +0800 (CST) Subject: [opencms-dev] version :10.0.1. can't access to the site after install In-Reply-To: References: <6c648909.2ba5.15664ba7ea2.Coremail.houcaoyu@163.com> Message-ID: Hi Arash, Thanks for your reply! The problem is solved by changing to Tomcat 8. Caoyu 在 2016-08-07 20:41:18,"Arash Kaffamanesh" 写道: Hi, I'd try it with Tomcat 7 or 8 and Java 1.7 or 1.8 Best, Arash On Sun, Aug 7, 2016 at 1:19 PM, houcaoyu wrote: hello I'm new to opencms. I'm using version 10.0.1. I followed the install.html in the "opencms-10.0.1.zip" , and installed the server without error with default settings. But after installation, when I access to "http://localhost:8080/opencms/opencms/overview/" , only a white page(no content) was displayed. http://localhost:8080/opencms/opencms/system/login can be normally displayed, but after login, if change the view to "Page Editor", the following page will be displayed. I have tried to reinstall many times, including reinstall tomcat , but doesn't work. please help!~~ Finally, my environment: opencms 10.0.1 tomcat 6.0.45 MySQL 5.7 Caoyu _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 60693 bytes Desc: not available URL: From alex at opencms.org Mon Aug 8 11:31:10 2016 From: alex at opencms.org (Alex Kandzior) Date: Mon, 8 Aug 2016 11:31:10 +0200 Subject: [opencms-dev] OpenCms Days 16 - Early bird tickets still available Message-ID: Dear OpenCms Users, OpenCms Days 2016 is the largest gathering of the OpenCms community this year. Open for all users of OpenCms, this 2 day conference and expo event features interesting sessions about OpenCms and provides an outlook about the upcoming features of the next OpenCms release 10.5. There are just 6 weeks left to get tickets for ‪OpenCms‬ Days 2016. Early Bird reduced ticket price is still available until August 19! Full information and tickets here: http://opencms-days.org Kind regards, Alex. ------------------- Alexander Kandzior Alkacon Software GmbH - The OpenCms Experts http://www.alkacon.com - http://www.opencms.org Visit OpenCms Days 2016 Conference and Expo September 26 to 27, 2016 in Cologne, Germany - http://www.opencms-days.org From Honey.Bhandari at cognizant.com Mon Aug 8 14:36:35 2016 From: Honey.Bhandari at cognizant.com (Honey.Bhandari at cognizant.com) Date: Mon, 8 Aug 2016 12:36:35 +0000 Subject: [opencms-dev] Sitemap edit Message-ID: Hi all I wanted to provide a user with restricted access in Sitemap, such that the user can update the title, keywords etc but cannot re-arrange or add or delete any item in the sitemap. Is there a way to achieve this? Regards Honey This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. -------------- next part -------------- An HTML attachment was scrubbed... URL: From deiverson at solutioncms.com Mon Aug 8 22:11:57 2016 From: deiverson at solutioncms.com (Deiverson Silveira) Date: Mon, 8 Aug 2016 17:11:57 -0300 Subject: [opencms-dev] Very slow deploy 9.5.3 in Tomcat8 - JLanConfig Message-ID: Hi, I try deploy in Tomcat 8, but very delay for start application, I dont use jlanconfig, how can disable this? Delay 4 minutes in default OpenCms 9.5.3 Att, -- *www.solutioncms.com The Brazilian Official Provider OpenCms* -------------- next part -------------- An HTML attachment was scrubbed... URL: From K.Schliemann at comundus.com Thu Aug 11 09:09:32 2016 From: K.Schliemann at comundus.com (Schliemann, Kai) Date: Thu, 11 Aug 2016 07:09:32 +0000 Subject: [opencms-dev] OpenCms 10 and MS SQL 2012 Message-ID: Hi list, did anyone try, if OpenCms 10 is running with MS SQL 2012? Best regards Kai -------------- next part -------------- An HTML attachment was scrubbed... URL: From K.Schliemann at comundus.com Thu Aug 11 19:49:53 2016 From: K.Schliemann at comundus.com (Schliemann, Kai) Date: Thu, 11 Aug 2016 17:49:53 +0000 Subject: [opencms-dev] OpenCms migration 6.2.1 to 9.5.2: error during OpenCms database import Message-ID: Hi list, did anyone of you ever get the following error message, when importing resources and users with OpenCms Database import: Importiere Benutzer abcd ... Fehler org.opencms.main.CmsIllegalArgumentException: Error importing user with the following properties: name = "a9a0ee4a-5f99-11e6-8e7d-005056890620", firstname = "abcd", lastname = "Martin", email = "abcd", flags = "martin.abcd at test.de", dateCreated = "Jan 1, 1970 at 1:00 AM", additionalInfos = "1/1/70 1:00 AM". at org.opencms.main.CmsIllegalArgumentException.createException(CmsIllegalArgumentException.java:73) at org.opencms.db.CmsDbContext.throwException(CmsDbContext.java:336) at org.opencms.db.CmsDbContext.report(CmsDbContext.java:286) at org.opencms.db.CmsSecurityManager.importUser(CmsSecurityManager.java:3270) at org.opencms.file.CmsObject.importUser(CmsObject.java:1975) at org.opencms.importexport.A_CmsImport.importUser(A_CmsImport.java:821) at org.opencms.importexport.CmsImportVersion4.importUser(CmsImportVersion4.java:206) at org.opencms.importexport.A_CmsImport.importUsers(A_CmsImport.java:946) at org.opencms.importexport.CmsImportVersion4.importData(CmsImportVersion4.java:160) at org.opencms.importexport.CmsImport.importData(CmsImport.java:113) at org.opencms.importexport.CmsVfsImportExportHandler.importData(CmsVfsImportExportHandler.java:198) at org.opencms.importexport.CmsImportExportManager.importData(CmsImportExportManager.java:729) at org.opencms.workplace.threads.CmsDatabaseImportThread.run(CmsDatabaseImportThread.java:90) Caused by: org.opencms.main.CmsIllegalArgumentException: The user name is used by the LDAP server. To create a user with the given name, please use the Synchronization tool. at org.opencms.ocee.ldap.CmsLdapUserDriver.createUser(CmsLdapUserDriver.java:278) at org.opencms.ocee.cache.CmsUserCache.createUser(CmsUserCache.java:177) at org.opencms.db.CmsDriverManager.importUser(CmsDriverManager.java:5013) at org.opencms.db.CmsSecurityManager.importUser(CmsSecurityManager.java:3257) ... 9 more Fehler org.opencms.importexport.CmsImportExportException: Error importing user "abcd". at org.opencms.importexport.A_CmsImport.importUser(A_CmsImport.java:867) at org.opencms.importexport.CmsImportVersion4.importUser(CmsImportVersion4.java:206) at org.opencms.importexport.A_CmsImport.importUsers(A_CmsImport.java:946) at org.opencms.importexport.CmsImportVersion4.importData(CmsImportVersion4.java:160) at org.opencms.importexport.CmsImport.importData(CmsImport.java:113) at org.opencms.importexport.CmsVfsImportExportHandler.importData(CmsVfsImportExportHandler.java:198) at org.opencms.importexport.CmsImportExportManager.importData(CmsImportExportManager.java:729) at org.opencms.workplace.threads.CmsDatabaseImportThread.run(CmsDatabaseImportThread.java:90) Caused by: org.opencms.main.CmsIllegalArgumentException: Error importing user with the following properties: name = "a9a0ee4a-5f99-11e6-8e7d-005056890620", firstname = "abcd", lastname = "Martin", email = "abcd", flags = "martin.abcd at test.de", dateCreated = "Jan 1, 1970 at 1:00 AM", additionalInfos = "1/1/70 1:00 AM". at org.opencms.main.CmsIllegalArgumentException.createException(CmsIllegalArgumentException.java:73) at org.opencms.db.CmsDbContext.throwException(CmsDbContext.java:336) at org.opencms.db.CmsDbContext.report(CmsDbContext.java:286) at org.opencms.db.CmsSecurityManager.importUser(CmsSecurityManager.java:3270) at org.opencms.file.CmsObject.importUser(CmsObject.java:1975) at org.opencms.importexport.A_CmsImport.importUser(A_CmsImport.java:821) ... 7 more Caused by: org.opencms.main.CmsIllegalArgumentException: The user name is used by the LDAP server. To create a user with the given name, please use the Synchronization tool. at org.opencms.ocee.ldap.CmsLdapUserDriver.createUser(CmsLdapUserDriver.java:278) at org.opencms.ocee.cache.CmsUserCache.createUser(CmsUserCache.java:177) at org.opencms.db.CmsDriverManager.importUser(CmsDriverManager.java:5013) at org.opencms.db.CmsSecurityManager.importUser(CmsSecurityManager.java:3257) ... 9 more Some users can be imported flawlessly but it stops at the point (see above). Anybody an idea? Best regards Kai -------------- next part -------------- An HTML attachment was scrubbed... URL: From alex at opencms.org Mon Aug 15 10:40:20 2016 From: alex at opencms.org (Alex Kandzior) Date: Mon, 15 Aug 2016 10:40:20 +0200 Subject: [opencms-dev] OpenCms Days 2016 - Last week for early bird tickets Message-ID: Dear OpenCms Users, OpenCms Days 2016 is the largest gathering of the OpenCms community this year. Open for all users of OpenCms, this 2 day conference and expo event features interesting sessions about OpenCms and provides an outlook about the upcoming features of the next OpenCms release 10.5. There are just 5 weeks left to get your ticket for ‪OpenCms‬ Days 2016. Reduced „early bird“ tickets are still available until the end of this week! Full information and tickets here: http://opencms-days.org Kind regards, Alex. ------------------- Alexander Kandzior Alkacon Software GmbH - The OpenCms Experts http://www.alkacon.com - http://www.opencms.org Visit OpenCms Days 2016 Conference and Expo September 26 to 27, 2016 in Cologne, Germany - http://www.opencms-days.org From flakstad at npolar.no Wed Aug 17 11:02:20 2016 From: flakstad at npolar.no (Paul-Inge Flakstad) Date: Wed, 17 Aug 2016 09:02:20 +0000 Subject: [opencms-dev] Map element with repeating parent to property list Message-ID: <14cf0c7b8e2844969281fb6073f131c1@MAUD.npolar.no> Hi all, When dealing with nested elements in XML content; is it possible to map the multiple values of a (non-repeating) element when its parent is repeating? Adding this rule to the topmost .xsd doesn't work, but illustrates what I'm going for: Thanks, Paul -------------- next part -------------- An HTML attachment was scrubbed... URL: From K.Schliemann at comundus.com Wed Aug 17 14:09:43 2016 From: K.Schliemann at comundus.com (Schliemann, Kai) Date: Wed, 17 Aug 2016 12:09:43 +0000 Subject: [opencms-dev] OpenCms 10: add module to launchpad howto Message-ID: Hi list, is there a manual how to add a custom modul to the Launchpad? It is the OAMP newsletter module. Maybe someone already did it. Thanks in advance. Best regards Kai -------------- next part -------------- An HTML attachment was scrubbed... URL: From kuku at physik.rwth-aachen.de Wed Aug 17 14:45:54 2016 From: kuku at physik.rwth-aachen.de (Christoph Kukulies) Date: Wed, 17 Aug 2016 14:45:54 +0200 Subject: [opencms-dev] find recently modified files Message-ID: <0138eb85-fcf8-b2a6-c0a2-3b06dea50a0d@physik.rwth-aachen.de> OpenCms 9 or 10: How can I get a list of files (using the workplace, tools) that have been modified a) since a certain date b) by a specified user? Also a Java class would be welcome. -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de From Honey.Bhandari at cognizant.com Wed Aug 17 14:47:40 2016 From: Honey.Bhandari at cognizant.com (Honey.Bhandari at cognizant.com) Date: Wed, 17 Aug 2016 12:47:40 +0000 Subject: [opencms-dev] find recently modified files In-Reply-To: <0138eb85-fcf8-b2a6-c0a2-3b06dea50a0d@physik.rwth-aachen.de> References: <0138eb85-fcf8-b2a6-c0a2-3b06dea50a0d@physik.rwth-aachen.de> Message-ID: Try DB export, it allows to do file changes from a specified date to my knowledge. Regards Honey -----Original Message----- From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Christoph Kukulies Sent: Wednesday, August 17, 2016 6:16 PM To: The OpenCms mailing list Subject: [opencms-dev] find recently modified files OpenCms 9 or 10: How can I get a list of files (using the workplace, tools) that have been modified a) since a certain date b) by a specified user? Also a Java class would be welcome. -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. From filip.kratochvil at nelasoft.cz Wed Aug 17 15:00:13 2016 From: filip.kratochvil at nelasoft.cz (Filip Kratochvil) Date: Wed, 17 Aug 2016 15:00:13 +0200 Subject: [opencms-dev] OpenCms 10: add module to launchpad howto In-Reply-To: References: Message-ID: <02e201d1f887$4b80f130$e282d390$@nelasoft.cz> Hi Kai, as i remember, you can't easily use "old-style" modules in OpenCms 10. Workplace part will not be available, you need to rewrite it. Take a look here: http://de.slideshare.net/AlkaconOpenCms/opencms-days-2015-creating-apps-for- the-opencms-10-workplace-apps Unfortunately we have not developed Launchpad part until this time, so i can't give you detailed info. -- S pozdravem / Kind regards Filip Kratochvil ------------------------------------------------ NELASOFT Technologies, s.r.o. E-mail: filip.kratochvil at nelasoft.cz Web: www.nelasoft.cz Twitter: @NELASOFT From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Schliemann, Kai Sent: Wednesday, August 17, 2016 2:10 PM To: The OpenCms mailing list Subject: [opencms-dev] OpenCms 10: add module to launchpad howto Hi list, is there a manual how to add a custom modul to the Launchpad? It is the OAMP newsletter module. Maybe someone already did it. Thanks in advance. Best regards Kai -------------- next part -------------- An HTML attachment was scrubbed... URL: From filip.kratochvil at nelasoft.cz Wed Aug 17 15:29:52 2016 From: filip.kratochvil at nelasoft.cz (Filip Kratochvil) Date: Wed, 17 Aug 2016 15:29:52 +0200 Subject: [opencms-dev] find recently modified files In-Reply-To: <0138eb85-fcf8-b2a6-c0a2-3b06dea50a0d@physik.rwth-aachen.de> References: <0138eb85-fcf8-b2a6-c0a2-3b06dea50a0d@physik.rwth-aachen.de> Message-ID: <030101d1f88b$6ff8bd50$4fea37f0$@nelasoft.cz> Hi Chris, easiest way is select documents using SOLR. You can use all metadata, properties, etc. But it can be limited, some documents may not be indexed. -- S pozdravem / Kind regards Filip Kratochvil ------------------------------------------------ NELASOFT Technologies, s.r.o. E-mail: filip.kratochvil at nelasoft.cz Web: www.nelasoft.cz Twitter: @NELASOFT -----Original Message----- From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Christoph Kukulies Sent: Wednesday, August 17, 2016 2:46 PM To: The OpenCms mailing list Subject: [opencms-dev] find recently modified files OpenCms 9 or 10: How can I get a list of files (using the workplace, tools) that have been modified a) since a certain date b) by a specified user? Also a Java class would be welcome. -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev From kuku at physik.rwth-aachen.de Wed Aug 17 15:43:52 2016 From: kuku at physik.rwth-aachen.de (Christoph Kukulies) Date: Wed, 17 Aug 2016 15:43:52 +0200 Subject: [opencms-dev] find recently modified files In-Reply-To: References: <0138eb85-fcf8-b2a6-c0a2-3b06dea50a0d@physik.rwth-aachen.de> Message-ID: <6e611398a7be46258fc21a788c575cb9@rwthex-w2-b.rwth-ad.de> Well hidden that feature :) , but thanks. Will use that from now on. Am 17.08.2016 um 14:47 schrieb Honey.Bhandari at cognizant.com: > Try DB export, it allows to do file changes from a specified date to my knowledge. > > Regards > Honey > > -----Original Message----- > From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Christoph Kukulies > Sent: Wednesday, August 17, 2016 6:16 PM > To: The OpenCms mailing list > Subject: [opencms-dev] find recently modified files > > OpenCms 9 or 10: > > How can I get a list of files (using the workplace, tools) that have been modified > > a) since a certain date > b) by a specified user? > > > Also a Java class would be welcome. > > -- > Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de From lorenz.lammersdorf at kernbrand.ch Wed Aug 17 15:51:35 2016 From: lorenz.lammersdorf at kernbrand.ch (Lorenz Lammersdorf) Date: Wed, 17 Aug 2016 15:51:35 +0200 Subject: [opencms-dev] find recently modified files In-Reply-To: <6e611398a7be46258fc21a788c575cb9@rwthex-w2-b.rwth-ad.de> References: <0138eb85-fcf8-b2a6-c0a2-3b06dea50a0d@physik.rwth-aachen.de> <6e611398a7be46258fc21a788c575cb9@rwthex-w2-b.rwth-ad.de> Message-ID: <91a6be8f-1b1a-23bb-f146-c0442479cfaa@kernbrand.ch> have a look at http://documentation.opencms.org/javadoc/core/org/opencms/file/CmsResource.html. there are methods available to get the last change date (http://documentation.opencms.org/javadoc/core/org/opencms/file/CmsResource.html#getDateLastModified()) and the user who modified the resource (http://documentation.opencms.org/javadoc/core/org/opencms/file/CmsResource.html#getUserLastModified()). you might write a simple jsp to build a list of the filtered resources. regards lorenz Am 17.08.2016 um 15:43 schrieb Christoph Kukulies: > Well hidden that feature :) , but thanks. Will use that from now on. > > > > Am 17.08.2016 um 14:47 schrieb Honey.Bhandari at cognizant.com: >> Try DB export, it allows to do file changes from a specified date to >> my knowledge. >> >> Regards >> Honey >> >> -----Original Message----- >> From: opencms-dev-bounces at opencms.org >> [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Christoph Kukulies >> Sent: Wednesday, August 17, 2016 6:16 PM >> To: The OpenCms mailing list >> Subject: [opencms-dev] find recently modified files >> >> OpenCms 9 or 10: >> >> How can I get a list of files (using the workplace, tools) that have >> been modified >> >> a) since a certain date >> b) by a specified user? >> >> >> Also a Java class would be welcome. >> >> -- >> Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de > From marc at fievet.be Wed Aug 17 17:21:16 2016 From: marc at fievet.be (marc) Date: Wed, 17 Aug 2016 17:21:16 +0200 Subject: [opencms-dev] RE : Re: find recently modified files Message-ID: <2rye7egkjfkaicpft6fmjqsi.1471447276273@email.android.com> hello, c'est une légende urbaine puisque je ne suis pas en télétravail ce vendredi mais en congé 😛je vais à pairidaïza avec ma filleule et ma nièce donc pas possible vendredi.  pour samedi on peut prendre un rapide croissant café (de 8h à 8h15) chez moi avant de démarrer, histoire de faire le tour du propriétaire ;-) Bonne soirée  Envoyé  depuis mon appareil Samsung  -------- Message d'origine -------- De : Lorenz Lammersdorf Date : 17/08/16 3:51 PM (GMT+01:00) À : kuku at physik.rwth-aachen.de, The OpenCms mailing list Objet : Re: [opencms-dev] find recently modified files have a look at http://documentation.opencms.org/javadoc/core/org/opencms/file/CmsResource.html. there are methods available to get the last change date (http://documentation.opencms.org/javadoc/core/org/opencms/file/CmsResource.html#getDateLastModified()) and the user who modified the resource (http://documentation.opencms.org/javadoc/core/org/opencms/file/CmsResource.html#getUserLastModified()). you might write a simple jsp to build a list of the filtered resources. regards lorenz Am 17.08.2016 um 15:43 schrieb Christoph Kukulies: > Well hidden that feature :) , but thanks. Will use that from now on. > > > > Am 17.08.2016 um 14:47 schrieb Honey.Bhandari at cognizant.com: >> Try DB export, it allows to do file changes from a specified date to >> my knowledge. >> >> Regards >> Honey >> >> -----Original Message----- >> From: opencms-dev-bounces at opencms.org >> [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Christoph Kukulies >> Sent: Wednesday, August 17, 2016 6:16 PM >> To: The OpenCms mailing list >> Subject: [opencms-dev] find recently modified files >> >> OpenCms 9 or 10: >> >> How can I get a list of files (using the workplace, tools) that have >> been modified >> >> a) since a certain date >> b) by a specified user? >> >> >> Also a Java class would be welcome. >> >> -- >> Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de > _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From K.Schliemann at comundus.com Thu Aug 18 09:26:34 2016 From: K.Schliemann at comundus.com (Schliemann, Kai) Date: Thu, 18 Aug 2016 07:26:34 +0000 Subject: [opencms-dev] OpenCms 10: add module to launchpad howto In-Reply-To: <02e201d1f887$4b80f130$e282d390$@nelasoft.cz> References: <02e201d1f887$4b80f130$e282d390$@nelasoft.cz> Message-ID: Hi Filip, thanks for your answer. I am a step further. As you mentioned, I can just install the module as it used to be. So I did with the Alkacon OAMP Newsletter module. When I click on the Newsletter icon in the administration view, I do not see the the Newsletter administration icons. I see the administration view without separation of "modern" and "traditional". I only "traditional" and also with the old icons. So the link must be wrong, but I do not know how to set the link. Best regards Kai Von: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] Im Auftrag von Filip Kratochvil Gesendet: Mittwoch, 17. August 2016 15:00 An: 'The OpenCms mailing list' Betreff: Re: [opencms-dev] OpenCms 10: add module to launchpad howto Hi Kai, as i remember, you can't easily use "old-style" modules in OpenCms 10. Workplace part will not be available, you need to rewrite it. Take a look here: http://de.slideshare.net/AlkaconOpenCms/opencms-days-2015-creating-apps-for-the-opencms-10-workplace-apps Unfortunately we have not developed Launchpad part until this time, so i can't give you detailed info. -- S pozdravem / Kind regards Filip Kratochvil ------------------------------------------------ NELASOFT Technologies, s.r.o. E-mail: filip.kratochvil at nelasoft.cz Web: www.nelasoft.cz Twitter: @NELASOFT From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Schliemann, Kai Sent: Wednesday, August 17, 2016 2:10 PM To: The OpenCms mailing list Subject: [opencms-dev] OpenCms 10: add module to launchpad howto Hi list, is there a manual how to add a custom modul to the Launchpad? It is the OAMP newsletter module. Maybe someone already did it. Thanks in advance. Best regards Kai -------------- next part -------------- An HTML attachment was scrubbed... URL: From filip.kratochvil at nelasoft.cz Thu Aug 18 10:04:45 2016 From: filip.kratochvil at nelasoft.cz (Filip Kratochvil) Date: Thu, 18 Aug 2016 10:04:45 +0200 Subject: [opencms-dev] OpenCms 10: add module to launchpad howto In-Reply-To: References: <02e201d1f887$4b80f130$e282d390$@nelasoft.cz> Message-ID: <00f201d1f927$2f274ac0$8d75e040$@nelasoft.cz> Hi Kai, i think that apps in Traditional sertion are rewritten as well (mybe not). Try to check source code of any default installed module (which implements workplace part of course). -- S pozdravem / Kind regards Filip Kratochvil ------------------------------------------------ NELASOFT Technologies, s.r.o. Mob: +420 777 366 998 E-mail: filip.kratochvil at nelasoft.cz Web: www.nelasoft.cz Twitter: @NELASOFT From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Schliemann, Kai Sent: Thursday, August 18, 2016 9:27 AM To: The OpenCms mailing list Subject: Re: [opencms-dev] OpenCms 10: add module to launchpad howto Hi Filip, thanks for your answer. I am a step further. As you mentioned, I can just install the module as it used to be. So I did with the Alkacon OAMP Newsletter module. When I click on the Newsletter icon in the administration view, I do not see the the Newsletter administration icons. I see the administration view without separation of "modern" and "traditional". I only "traditional" and also with the old icons. So the link must be wrong, but I do not know how to set the link. Best regards Kai Von: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] Im Auftrag von Filip Kratochvil Gesendet: Mittwoch, 17. August 2016 15:00 An: 'The OpenCms mailing list' Betreff: Re: [opencms-dev] OpenCms 10: add module to launchpad howto Hi Kai, as i remember, you can't easily use "old-style" modules in OpenCms 10. Workplace part will not be available, you need to rewrite it. Take a look here: http://de.slideshare.net/AlkaconOpenCms/opencms-days-2015-creating-apps-for- the-opencms-10-workplace-apps Unfortunately we have not developed Launchpad part until this time, so i can't give you detailed info. -- S pozdravem / Kind regards Filip Kratochvil ------------------------------------------------ NELASOFT Technologies, s.r.o. E-mail: filip.kratochvil at nelasoft.cz Web: www.nelasoft.cz Twitter: @NELASOFT From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Schliemann, Kai Sent: Wednesday, August 17, 2016 2:10 PM To: The OpenCms mailing list Subject: [opencms-dev] OpenCms 10: add module to launchpad howto Hi list, is there a manual how to add a custom modul to the Launchpad? It is the OAMP newsletter module. Maybe someone already did it. Thanks in advance. Best regards Kai -------------- next part -------------- An HTML attachment was scrubbed... URL: From alex at opencms.org Mon Aug 22 14:51:35 2016 From: alex at opencms.org (Alex Kandzior) Date: Mon, 22 Aug 2016 14:51:35 +0200 Subject: [opencms-dev] OpenCms Days 2016 - Program out now Message-ID: <6D12E097-EE0D-4F00-B759-2B5F360198C0@opencms.org> Dear OpenCms Users, The program for ‪‎OpenCms‬ Days 2016 is out and online at http://opencms-days.org/program/. Check out the descriptions of the interesting conference sessions and (for the first time) our practical "hands on" workshops. There are only 4 weeks left to register for OpenCms Days. Workshop seats are distributed on a first come, first served basis! Hurry up and get your ticket now while seats are still available in the workshop of your choice. Full information and tickets here: http://opencms-days.org Kind regards, Alex. ------------------- Alexander Kandzior Alkacon Software GmbH - The OpenCms Experts http://www.alkacon.com - http://www.opencms.org Visit OpenCms Days 2016 Conference and Expo September 26 to 27, 2016 in Cologne, Germany - http://www.opencms-days.org From t.schmidt at md-network.de Mon Aug 22 15:49:59 2016 From: t.schmidt at md-network.de (Thomas Schmidt) Date: Mon, 22 Aug 2016 15:49:59 +0200 Subject: [opencms-dev] Question Permission assignment Message-ID: <16D51C00-72BC-4CA2-B280-55D78FB33EBA@md-network.de> Hello, i have a relative simple OpenCMS (10.0.1) setup with a singe Website and just a few users (some Admins=all permissions, some users = just editing (a few) pages), which are grouped in „Users“ and „Administrators“. I have only the root ("/„) OU. Now I have a few special pages (which are in folders) which I want to protect against changes by the „Users“ (but „Users“ should be able to read). Therefore I used the explorer and and changed permissions of a folder which should have this kind of protection. I removed for „All others“ all rights (should not be visible for all others) means i set it to „-r-w-v-c-d“, to the „Users“ group I gave "+r-w+v-c-d“, means read and view is enabled all other (especially write) is denied and for „Administrators“ i gave all rights. For all settings i set „Overwrite Inherited“ and „Inherit on subfolders“ so all pages in the folder should be protected. BUT: a normal user is still able to edit the page (I have still the Edit Points, i can still save the page) - even if i apparently prevented the „Users“ groups to be able to write. However i denied direct publishing which works. I tried that as well for single user (prevented write and publishing) - here as well - it is still possible to save - but not to publish - even if write is forbidden. I tried this as well with 9.5.2 - and same behavior. Only rights which are apparently working are „direct publishing“ and „read“ - if i prevent those the user/group cant open the page or cant publish it. Write always works as long read is enabled. So if i want to protect some files/pages/folders from being written by a special user or group - how to do that ? is this behavior expected ? do i do something wrong (most likely ?!) ? Many thanks Kind Regards Thomas Schmidt From t.schmidt at md-network.de Mon Aug 22 15:56:03 2016 From: t.schmidt at md-network.de (Thomas Schmidt) Date: Mon, 22 Aug 2016 15:56:03 +0200 Subject: [opencms-dev] com.alkacon.opencms.v8.formgenerator_2.0.2 uses outdated API Message-ID: Hello, i would like to use the Formgenerator module. It was working nicely in my last project - however on a new server with Java 8, Tomcat 8 and OpenCMS 10.0.1 i get following exceptions: java.lang.NoClassDefFoundError: com/sun/image/codec/jpeg/ImageFormatException rendering URL http://127.0.0.1:8080/opencms/opencms/system/modules/com.alkacon.opencms.v8.formgenerator/pages/captcha.jsp ... Especially the exception points to a API change in Java. I realized now that this was apparently fixed on GitHub - and i tried to translate the modules (v8.commons and v8.formgenerator) with some success - but when i load the Modules to OpenCMS i get following exception: org.opencms.xml.CmsXmlException: Invalid custom widget class "com.alkacon.opencms.v8.formgenerator.CmsSelectWidgetXmlcontentType" for element "URI" in content definition "opencms://system/modules/com.alkacon.opencms.v8.formgenerator/schemas/report.xsd". … Ist here any working, compiled, v8 formgenerator module available ? or anything what i can do to fix the problem above ? Many Thanks Kind Regards Thomas Schmidt From alex at opencms.org Mon Aug 22 17:02:32 2016 From: alex at opencms.org (Alex Kandzior) Date: Mon, 22 Aug 2016 17:02:32 +0200 Subject: [opencms-dev] Question Permission assignment In-Reply-To: <16D51C00-72BC-4CA2-B280-55D78FB33EBA@md-network.de> References: <16D51C00-72BC-4CA2-B280-55D78FB33EBA@md-network.de> Message-ID: <2FC7161C-9AF0-4DF3-864C-B4A0ECC48583@opencms.org> Thomas, You wrote that you have set the permissions on the pages folder. Did you also remove the permissions on the elements that have been placed on the pages? Keep in mind the page consists of the container page file (usually an index.html) and a number of individual elements usually located in the .contents folder of a website. To not see the edit points you must also remove the permissions on the elements that have been placed on the page. Or you can restrict the users that are allowed to access an element using the tag in your template. BTW the suggested way of restricting parts of the site is creating these as subsites. In this case its easier to set the permissions because the .content folder would be part of the subsite. Kind regards, Alex. ------------------- Alexander Kandzior Alkacon Software GmbH - The OpenCms Experts http://www.alkacon.com - http://www.opencms.org > Am 22.08.2016 um 15:49 schrieb Thomas Schmidt : > > > Hello, > i have a relative simple OpenCMS (10.0.1) setup with a singe Website and just a few users (some Admins=all permissions, some users = just editing (a few) pages), which are grouped in „Users“ and „Administrators“. I have only the root ("/„) OU. > > Now I have a few special pages (which are in folders) which I want to protect against changes by the „Users“ (but „Users“ should be able to read). > Therefore I used the explorer and and changed permissions of a folder which should have this kind of protection. > I removed for „All others“ all rights (should not be visible for all others) means i set it to „-r-w-v-c-d“, to the „Users“ group I gave "+r-w+v-c-d“, means read and view is enabled all other (especially write) is denied and for „Administrators“ i gave all rights. For all settings i set „Overwrite Inherited“ and „Inherit on subfolders“ so all pages in the folder should be protected. > > BUT: a normal user is still able to edit the page (I have still the Edit Points, i can still save the page) - even if i apparently prevented the „Users“ groups to be able to write. However i denied direct publishing which works. > > I tried that as well for single user (prevented write and publishing) - here as well - it is still possible to save - but not to publish - even if write is forbidden. > I tried this as well with 9.5.2 - and same behavior. > > Only rights which are apparently working are „direct publishing“ and „read“ - if i prevent those the user/group cant open the page or cant publish it. Write always works as long read is enabled. > > So if i want to protect some files/pages/folders from being written by a special user or group - how to do that ? is this behavior expected ? do i do something wrong (most likely ?!) ? > > > Many thanks > Kind Regards > Thomas Schmidt > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > From t.schmidt at md-network.de Mon Aug 22 23:37:11 2016 From: t.schmidt at md-network.de (Thomas Schmidt) Date: Mon, 22 Aug 2016 23:37:11 +0200 Subject: [opencms-dev] Question Permission assignment In-Reply-To: <2FC7161C-9AF0-4DF3-864C-B4A0ECC48583@opencms.org> References: <16D51C00-72BC-4CA2-B280-55D78FB33EBA@md-network.de> <2FC7161C-9AF0-4DF3-864C-B4A0ECC48583@opencms.org> Message-ID: Hello, perfect that explains a lot. I changed to subsites and local content which fully enables me to do what I want. Thanks a lot ! (also for the fast reply !) Kind Regards Thomas Schmidt > Am 22.08.2016 um 17:02 schrieb Alex Kandzior : > > Thomas, > > You wrote that you have set the permissions on the pages folder. > > Did you also remove the permissions on the elements that have been placed on the pages? > > Keep in mind the page consists of the container page file (usually an index.html) and a number of individual elements usually located in the .contents folder of a website. > > To not see the edit points you must also remove the permissions on the elements that have been placed on the page. > > Or you can restrict the users that are allowed to access an element using the tag in your template. > > BTW the suggested way of restricting parts of the site is creating these as subsites. In this case its easier to set the permissions because the .content folder would be part of the subsite. > > Kind regards, > Alex. > > ------------------- > Alexander Kandzior > > Alkacon Software GmbH - The OpenCms Experts > http://www.alkacon.com - http://www.opencms.org From kuku at physik.rwth-aachen.de Tue Aug 23 12:26:53 2016 From: kuku at physik.rwth-aachen.de (Christoph Kukulies) Date: Tue, 23 Aug 2016 12:26:53 +0200 Subject: [opencms-dev] uploading/synchronizing a directory from FS to VFS Message-ID: On a computer (Windows 7) on which I'm running Opencms I have a Windows share (thus I cannot use Jlan) which contains a couple of files being edited by our staff. How can I manage that these files (directory tree) is imported automatically into OpenCMS by some kind of script, java program or whatever? Hadn't there been an option to upload and unpack a .ZIP file in earllier versions of OpenCMS? This option seems to be lacking in the current (9.5.x) upload dialog. -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de From lruggeri at maticad.it Tue Aug 23 14:12:55 2016 From: lruggeri at maticad.it (lruggeri at maticad.it) Date: Tue, 23 Aug 2016 14:12:55 +0200 Subject: [opencms-dev] R: uploading/synchronizing a directory from FS to VFS In-Reply-To: References: Message-ID: <005501d1fd37$ae3e4480$0abacd80$@maticad.it> Hi Christoph, in Administration View -> Workplace Tools -> Synchronization settings you can configure some folder to synchronize between VFS and RFS. Then you can run the synchronization with a button in the workplace. Maybe this feature can help you Bye, L. -----Messaggio originale----- Da: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] Per conto di Christoph Kukulies Inviato: Tuesday, August 23, 2016 12:27 PM A: The OpenCms mailing list Oggetto: [opencms-dev] uploading/synchronizing a directory from FS to VFS On a computer (Windows 7) on which I'm running Opencms I have a Windows share (thus I cannot use Jlan) which contains a couple of files being edited by our staff. How can I manage that these files (directory tree) is imported automatically into OpenCMS by some kind of script, java program or whatever? Hadn't there been an option to upload and unpack a .ZIP file in earllier versions of OpenCMS? This option seems to be lacking in the current (9.5.x) upload dialog. -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev From kuku at physik.rwth-aachen.de Tue Aug 23 15:39:34 2016 From: kuku at physik.rwth-aachen.de (Christoph Kukulies) Date: Tue, 23 Aug 2016 15:39:34 +0200 Subject: [opencms-dev] R: uploading/synchronizing a directory from FS to VFS In-Reply-To: <005501d1fd37$ae3e4480$0abacd80$@maticad.it> References: <005501d1fd37$ae3e4480$0abacd80$@maticad.it> Message-ID: <6af8f101-6ae1-9027-83ec-094f019fb23b@physik.rwth-aachen.de> Hi L., that's great info. Cheers, Christoph Am 23.08.2016 um 14:12 schrieb lruggeri at maticad.it: > Hi Christoph, > in Administration View -> Workplace Tools -> Synchronization settings you > can configure some folder to synchronize between VFS and RFS. > Then you can run the synchronization with a button in the workplace. > Maybe this feature can help you > > Bye, L. > > -----Messaggio originale----- > Da: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] > Per conto di Christoph Kukulies > Inviato: Tuesday, August 23, 2016 12:27 PM > A: The OpenCms mailing list > Oggetto: [opencms-dev] uploading/synchronizing a directory from FS to VFS > > On a computer (Windows 7) on which I'm running Opencms I have a Windows > share (thus I cannot use Jlan) which contains a couple of files being edited > by our staff. > > How can I manage that these files (directory tree) is imported automatically > into OpenCMS by some kind of script, java program or whatever? > > Hadn't there been an option to upload and unpack a .ZIP file in earllier > versions of OpenCMS? This option seems to be lacking in the current > (9.5.x) upload dialog. > -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de From kuku at physik.rwth-aachen.de Tue Aug 23 15:53:20 2016 From: kuku at physik.rwth-aachen.de (Christoph Kukulies) Date: Tue, 23 Aug 2016 15:53:20 +0200 Subject: [opencms-dev] Opencms errors in log Message-ID: <554b34af-fb4d-55e3-3bab-6ffe8a3fc524@physik.rwth-aachen.de> 23 Aug 2016 15:45:55,872 INFO [rg.opencms.jsp.CmsJspLoginBean: 203] Successful login of user "/Admin": Request from IP 172.27.4.215 using uri "/system/login/index.html". Unknown.anonymous(Unknown Source) Unknown.QE/<(Unknown Source) Unknown.RE(Unknown Source) Unknown.NE(Unknown Source) Unknown.pcc(Unknown Source) Unknown.Dac(Unknown Source) Unknown.Yac(Unknown Source) Unknown.yU(Unknown Source) Unknown.JU(Unknown Source) Unknown.MQ(Unknown Source) Unknown.Xac(Unknown Source) Unknown.Cve(Unknown Source) Unknown.Kac(Unknown Source) __gwt$exception: : Permission denied to access property "type" What do I have to think about the above error log? -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de From kuku at physik.rwth-aachen.de Tue Aug 23 15:57:05 2016 From: kuku at physik.rwth-aachen.de (Christoph Kukulies) Date: Tue, 23 Aug 2016 15:57:05 +0200 Subject: [opencms-dev] R: uploading/synchronizing a directory from FS to VFS In-Reply-To: <005501d1fd37$ae3e4480$0abacd80$@maticad.it> References: <005501d1fd37$ae3e4480$0abacd80$@maticad.it> Message-ID: <14dc2ee3-8982-8b2e-a045-988ac76b0bc1@physik.rwth-aachen.de> I established the synchronisation. Hope it will work with a path like C:\Program Files\Apache_Group\Tomcat_6.0.39\webapps\ROOT\MyRepo as the RFS directory. Does it synchronize in both directions? When does the synchronization take place? Instantly or periodically? -- Christoph Am 23.08.2016 um 14:12 schrieb lruggeri at maticad.it: > Hi Christoph, > in Administration View -> Workplace Tools -> Synchronization settings you > can configure some folder to synchronize between VFS and RFS. > Then you can run the synchronization with a button in the workplace. > Maybe this feature can help you > > Bye, L. > > -----Messaggio originale----- > Da: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] > Per conto di Christoph Kukulies > Inviato: Tuesday, August 23, 2016 12:27 PM > A: The OpenCms mailing list > Oggetto: [opencms-dev] uploading/synchronizing a directory from FS to VFS > > On a computer (Windows 7) on which I'm running Opencms I have a Windows > share (thus I cannot use Jlan) which contains a couple of files being edited > by our staff. > > How can I manage that these files (directory tree) is imported automatically > into OpenCMS by some kind of script, java program or whatever? > > Hadn't there been an option to upload and unpack a .ZIP file in earllier > versions of OpenCMS? This option seems to be lacking in the current > (9.5.x) upload dialog. > > -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de From kuku at physik.rwth-aachen.de Tue Aug 23 16:17:40 2016 From: kuku at physik.rwth-aachen.de (Christoph Kukulies) Date: Tue, 23 Aug 2016 16:17:40 +0200 Subject: [opencms-dev] R: uploading/synchronizing a directory from FS to VFS In-Reply-To: <14dc2ee3-8982-8b2e-a045-988ac76b0bc1@physik.rwth-aachen.de> References: <005501d1fd37$ae3e4480$0abacd80$@maticad.it> <14dc2ee3-8982-8b2e-a045-988ac76b0bc1@physik.rwth-aachen.de> Message-ID: <53fa50ca85e0498dbe4bb9d85bd836c0@rwthex-w2-b.rwth-ad.de> It seems to use the VFS as the source and the RFS as destination, at least when I follow the naming in the configuration form in "Workplace Tools". Probably not what I want. Am 23.08.2016 um 15:57 schrieb Christoph Kukulies: > I established the synchronisation. > > Hope it will work with a path like > > C:\Program Files\Apache_Group\Tomcat_6.0.39\webapps\ROOT\MyRepo > > as the RFS directory. > > Does it synchronize in both directions? When does the synchronization > take place? > Instantly or periodically? > > -- > Christoph > > > Am 23.08.2016 um 14:12 schrieb lruggeri at maticad.it: >> Hi Christoph, >> in Administration View -> Workplace Tools -> Synchronization >> settings you >> can configure some folder to synchronize between VFS and RFS. >> Then you can run the synchronization with a button in the workplace. >> Maybe this feature can help you >> >> Bye, L. >> >> -----Messaggio originale----- >> Da: opencms-dev-bounces at opencms.org >> [mailto:opencms-dev-bounces at opencms.org] >> Per conto di Christoph Kukulies >> Inviato: Tuesday, August 23, 2016 12:27 PM >> A: The OpenCms mailing list >> Oggetto: [opencms-dev] uploading/synchronizing a directory from FS to >> VFS >> >> On a computer (Windows 7) on which I'm running Opencms I have a Windows >> share (thus I cannot use Jlan) which contains a couple of files being >> edited >> by our staff. >> >> How can I manage that these files (directory tree) is imported >> automatically >> into OpenCMS by some kind of script, java program or whatever? >> >> Hadn't there been an option to upload and unpack a .ZIP file in earllier >> versions of OpenCMS? This option seems to be lacking in the current >> (9.5.x) upload dialog. >> >> > -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de From t.schmidt at md-network.de Wed Aug 24 15:30:13 2016 From: t.schmidt at md-network.de (Thomas Schmidt) Date: Wed, 24 Aug 2016 15:30:13 +0200 Subject: [opencms-dev] Recommended way of importing external resources to VFS ? Message-ID: Hello, I have some data (plain HTML files and Pictures) which are generated by some reporting tools. I would like to publish those in OpenCMS and make use of OpenCMS permission system. What is the recommended way of importing static resources automatically from the server filesystem to the VFS ? I tried to do that by OpenCMS shell - this works - but apparently I can only publish in general by giving command publishProjectAndWait(), which will publish apparently automatically other things from other users (seems so that in past there was something like publishResource(String) command which is not available anymore). I tried as well to configure a Synchronisation with a folder - which was not working (and would be less preferred). Many Thanks Kind Regards Thomas Schmidt From zstephanz at gmail.com Wed Aug 24 16:54:47 2016 From: zstephanz at gmail.com (Stephan Schrader) Date: Wed, 24 Aug 2016 16:54:47 +0200 Subject: [opencms-dev] Recommended way of importing external resources to VFS ? In-Reply-To: References: Message-ID: Hi Thomas, you can create a temporary project before importing the content. This way only the imported content will be published. We use the following: createDefaultProject "[Project Name]" "[Description]" setCurrentProject "[Project Name]" ... publishProjectAndWait deleteProject "[Project Name]" Stephan 2016-08-24 15:30 GMT+02:00 Thomas Schmidt : > Hello, > > I have some data (plain HTML files and Pictures) which are generated by > some reporting tools. I would like to publish those in OpenCMS and make use > of OpenCMS permission system. > > What is the recommended way of importing static resources automatically > from the server filesystem to the VFS ? > > I tried to do that by OpenCMS shell - this works - but apparently I can > only publish in general by giving command publishProjectAndWait(), which > will publish apparently automatically other things from other users (seems > so that in past there was something like publishResource(String) command > which is not available anymore). > I tried as well to configure a Synchronisation with a folder - which was > not working (and would be less preferred). > > > Many Thanks > Kind Regards > Thomas Schmidt > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From matzabweb at web.de Thu Aug 25 11:21:13 2016 From: matzabweb at web.de (Arno Nym) Date: Thu, 25 Aug 2016 11:21:13 +0200 Subject: [opencms-dev] Cannot find valid editor for the file Message-ID: An HTML attachment was scrubbed... URL: From manojsharma20 at gmail.com Fri Aug 26 08:42:17 2016 From: manojsharma20 at gmail.com (Manoj Sharma) Date: Fri, 26 Aug 2016 12:12:17 +0530 Subject: [opencms-dev] Logout from ADE toolbar redirect to localhost/shared/index.html?logout=true Message-ID: Hi, When i am trying to logout from ADE toolbar, i am getting *Error reading resource from path "/shared/index.html". Reason: Unable to read resource "/shared/index.html". *Error. I don't understand why i am getting this issue and i am unable to logout from website. If i remove the shared path from url and press enter, i am still login-ed, i am not logout from website. Please friends Let me know what is the issue. -- *Thanks and Regards* *Manoj K. Sharma* -------------- next part -------------- An HTML attachment was scrubbed... URL: From kuku at physik.rwth-aachen.de Fri Aug 26 09:46:13 2016 From: kuku at physik.rwth-aachen.de (Christoph Kukulies) Date: Fri, 26 Aug 2016 09:46:13 +0200 Subject: [opencms-dev] Logout from ADE toolbar redirect to localhost/shared/index.html?logout=true In-Reply-To: References: Message-ID: <40e78da8-c88c-a71c-f314-6ded3f97f148@physik.rwth-aachen.de> An HTML attachment was scrubbed... URL: From t.schmidt at md-network.de Mon Aug 29 02:33:59 2016 From: t.schmidt at md-network.de (Thomas Schmidt) Date: Mon, 29 Aug 2016 02:33:59 +0200 Subject: [opencms-dev] Text editor doesn't set Download Gallery link correctly Message-ID: Hello, we have changed OpenCMS to 10.0.2 and observed now a problem which occurs when placing a link to a download gallery item with the download gallery link function of the text editor. Instead of expanding the link in the final hyperlink to https://abc.tld/opencms/opencms/path/.content/MyDownloadGallery/content it is setting the link to https://abc.tld/path/.content/MyDownloadGallery/content. The opencms/opencms is missing. When editing the link manually it works. Is this something can be configured ? In previous versions of OpenCMS this was just working (without additional configuration) … Many Thanks Kind Regards Thomas Schmidt From a.kandzior at alkacon.com Mon Aug 29 11:37:36 2016 From: a.kandzior at alkacon.com (Alexander Kandzior) Date: Mon, 29 Aug 2016 11:37:36 +0200 Subject: [opencms-dev] OpenCms Days 2016 - Only three weeks left to register! Message-ID: <85DF1F81-A7ED-4101-9732-38F84810EBF1@alkacon.com> Dear OpenCms Users, OpenCms Days will take place on Monday 26th and Tuesday 27th of September. The conference program is now available at http://www.opencms-days.org/program/conference-program. Check out the descriptions of the interesting conference sessions and (for the first time) our practical "hands on" workshops. The deadline for registration is fast approaching! Registration will close September 20. Workshop seats are distributed on a first come, first served basis. This event is the best opportunity to exchange ideas with the international community and learn about the latest OpenCms 10.5 release. Join us in Cologne and register here: http://www.opencms-days.org/order-your-ticket/. Kind regards, Alexander Kandzior ------------------- Alkacon Software GmbH - The OpenCms Experts An der Wachsfabrik 13 50996 Koeln, DE Tel: +49 (0)2236 3826-11 Fax: +49 (0)2236 3826-20 Email: a.kandzior at alkacon.com http://www.alkacon.com http://www.opencms.org Geschäftsführer: Alexander Kandzior, Amtsgericht Köln, HRB 54613 From manojsharma20 at gmail.com Mon Aug 29 13:45:47 2016 From: manojsharma20 at gmail.com (Manoj Sharma) Date: Mon, 29 Aug 2016 17:15:47 +0530 Subject: [opencms-dev] opencms-dev Digest, Vol 252, Issue 4 In-Reply-To: References: Message-ID: Hi, Can anybody help me regarding this issue ? On Fri, Aug 26, 2016 at 3:30 PM, wrote: > Send opencms-dev mailing list submissions to > opencms-dev at opencms.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > or, via email, send a message with subject or body 'help' to > opencms-dev-request at opencms.org > > You can reach the person managing the list at > opencms-dev-owner at opencms.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of opencms-dev digest..." > > > Today's Topics: > > 1. Logout from ADE toolbar redirect to > localhost/shared/index.html?logout=true (Manoj Sharma) > 2. Re: Logout from ADE toolbar redirect to > localhost/shared/index.html?logout=true (Christoph Kukulies) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Fri, 26 Aug 2016 12:12:17 +0530 > From: Manoj Sharma > To: opencms-dev at opencms.org > Subject: [opencms-dev] Logout from ADE toolbar redirect to > localhost/shared/index.html?logout=true > Message-ID: > gmail.com> > Content-Type: text/plain; charset="utf-8" > > Hi, > > When i am trying to logout from ADE toolbar, i am getting *Error reading > resource from path "/shared/index.html". Reason: Unable to read resource > "/shared/index.html". *Error. > > I don't understand why i am getting this issue and i am unable to logout > from website. If i remove the shared path from url and press enter, i am > still login-ed, i am not logout from website. > > Please friends Let me know what is the issue. > > -- > > *Thanks and Regards* > *Manoj K. Sharma* > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: attachments/20160826/ab2242f2/attachment-0001.html> > > ------------------------------ > > Message: 2 > Date: Fri, 26 Aug 2016 09:46:13 +0200 > From: Christoph Kukulies > To: The OpenCms mailing list > Subject: Re: [opencms-dev] Logout from ADE toolbar redirect to > localhost/shared/index.html?logout=true > Message-ID: > <40e78da8-c88c-a71c-f314-6ded3f97f148 at physik.rwth-aachen.de> > Content-Type: text/plain; charset="us-ascii" > > An HTML attachment was scrubbed... > URL: attachments/20160826/14e0ef72/attachment-0001.html> > > ------------------------------ > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > End of opencms-dev Digest, Vol 252, Issue 4 > ******************************************* > -- *Thanks and Regards* *Manoj K. Sharma* ( +91 9718729491 ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From gfrancis2 at cancercare.mb.ca Tue Aug 30 22:32:10 2016 From: gfrancis2 at cancercare.mb.ca (Gratian Francis) Date: Tue, 30 Aug 2016 20:32:10 +0000 Subject: [opencms-dev] Importing Cloned Module Resulting in Tomcat Failing to Deploy ROOT.war Message-ID: Hello, So I cloned the org.opencms.apollo.template.webform_10.0.0 demo module as I would like to use it in my project after modifying it to suit my needs a bit, however without having made any adjustments or modifications to the module beyond simply cloning the module, I noticed that if I import the cloned module into OpenCMS and then stop or restart Tomcat, Tomcat then fails to deploy ROOT.war resulting in the below alerts in tomcat's catalina log file: 30-Aug-2016 12:16:03.873 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server version: Apache Tomcat/8.0.32 30-Aug-2016 12:16:03.876 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server built: Mar 9 2016 10:57:11 UTC 30-Aug-2016 12:16:03.876 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server number: 8.0.32.0 30-Aug-2016 12:16:03.877 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Name: Linux 30-Aug-2016 12:16:03.877 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Version: 3.12.59-60.45-default 30-Aug-2016 12:16:03.877 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Architecture: amd64 30-Aug-2016 12:16:03.878 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Java Home: /usr/lib64/jvm/java-1.8.0-openjdk-1.8.0/jre 30-Aug-2016 12:16:03.878 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Version: 1.8.0_91-b14 30-Aug-2016 12:16:03.878 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Vendor: Oracle Corporation 30-Aug-2016 12:16:03.879 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log CATALINA_BASE: /usr/share/tomcat 30-Aug-2016 12:16:03.879 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log CATALINA_HOME: /usr/share/tomcat 30-Aug-2016 12:16:03.880 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dcatalina.base=/usr/share/tomcat 30-Aug-2016 12:16:03.880 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dcatalina.home=/usr/share/tomcat 30-Aug-2016 12:16:03.881 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.endorsed.dirs= 30-Aug-2016 12:16:03.881 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.io.tmpdir=/var/cache/tomcat/temp 30-Aug-2016 12:16:03.885 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.util.logging.config.file=/usr/share/tomcat/conf/logging.properties 30-Aug-2016 12:16:03.886 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 30-Aug-2016 12:16:03.886 INFO [main] org.apache.catalina.core.AprLifecycleListener.lifecycleEvent An older version 1.1.32 of the APR based Apache Tomcat Native library is installed, while Tomcat recommends a minimum version of 1.1.33 30-Aug-2016 12:16:03.886 INFO [main] org.apache.catalina.core.AprLifecycleListener.lifecycleEvent Loaded APR based Apache Tomcat Native library 1.1.32 using APR version 1.5.1. 30-Aug-2016 12:16:03.889 INFO [main] org.apache.catalina.core.AprLifecycleListener.lifecycleEvent APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true]. 30-Aug-2016 12:16:03.973 INFO [main] org.apache.catalina.core.AprLifecycleListener.initializeSSL OpenSSL successfully initialized (OpenSSL 1.0.1i 6 Aug 2014) 30-Aug-2016 12:16:04.099 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler ["http-apr-8080"] 30-Aug-2016 12:16:04.124 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler ["ajp-apr-8009"] 30-Aug-2016 12:16:04.126 INFO [main] org.apache.catalina.startup.Catalina.load Initialization processed in 977 ms 30-Aug-2016 12:16:04.162 INFO [main] org.apache.catalina.core.StandardService.startInternal Starting service Catalina 30-Aug-2016 12:16:04.170 INFO [main] org.apache.catalina.core.StandardEngine.startInternal Starting Servlet Engine: Apache Tomcat/8.0.32 30-Aug-2016 12:16:04.217 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployWAR Deploying web application archive /srv/tomcat/webapps/ROOT.war 30-Aug-2016 12:16:04.559 SEVERE [localhost-startStop-1] org.apache.catalina.core.ContainerBase.addChildInternal ContainerBase.addChild: start: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[]] at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:153) at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:725) at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:701) at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:717) at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:939) at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1812) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at java.lang.Thread.run(Thread.java:745) Caused by: org.apache.catalina.LifecycleException: Failed to start component [org.apache.catalina.webresources.StandardRoot at 54df23fa] at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:153) at org.apache.catalina.core.StandardContext.resourcesStart(StandardContext.java:4928) at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5058) at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:147) ... 10 more Caused by: org.apache.catalina.LifecycleException: Failed to initialize component [org.apache.catalina.webresources.JarResourceSet at 154db8f3] at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:106) at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:136) at org.apache.catalina.webresources.StandardRoot.startInternal(StandardRoot.java:699) at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:147) ... 13 more Caused by: java.lang.IllegalArgumentException: java.util.zip.ZipException: error in opening zip file at org.apache.catalina.webresources.JarResourceSet.initInternal(JarResourceSet.java:96) at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:102) ... 16 more Caused by: java.util.zip.ZipException: error in opening zip file at java.util.zip.ZipFile.open(Native Method) at java.util.zip.ZipFile.(ZipFile.java:219) at java.util.zip.ZipFile.(ZipFile.java:149) at java.util.jar.JarFile.(JarFile.java:166) at java.util.jar.JarFile.(JarFile.java:103) at org.apache.catalina.webresources.JarResourceSet.initInternal(JarResourceSet.java:88) ... 17 more 30-Aug-2016 12:16:04.563 SEVERE [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployWAR Error deploying web application archive /srv/tomcat/webapps/ROOT.war java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[]] at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:729) at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:701) at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:717) at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:939) at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1812) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at java.lang.Thread.run(Thread.java:745) 30-Aug-2016 12:16:04.564 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployWAR Deployment of web application archive /srv/tomcat/webapps/ROOT.war has finished in 346 ms 30-Aug-2016 12:16:04.570 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["http-apr-8080"] 30-Aug-2016 12:16:04.593 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["ajp-apr-8009"] 30-Aug-2016 12:16:04.601 INFO [main] org.apache.catalina.startup.Catalina.start Server startup in 474 ms This only happens if I import the cloned webform module as tomcat starts up and runs fine if I reinstall OpenCMS and import all my other modules and content while excluding the one I cloned from org.opencms.apollo.template.webform_10.0.0, is it possible that cloned module was simply corrupted in some way or not cloned properly? Has anyone else ran into a similar issue before? Thanks, Gratian Francis -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- This email and/or any documents in this transmission is intended for the addressee(s) only and may contain legally privileged or confidential information. Any unauthorized use, disclosure, distribution, copying or dissemination is strictly prohibited. If you receive this transmission in error, please notify the sender immediately and return the original. Ce courriel et tout document dans cette transmission est destiné à la personne ou aux personnes à qui il est adressé. Il peut contenir des informations privilégiées ou confidentielles. Toute utilisation, divulgation, distribution, copie, ou diffusion non autorisée est strictement défendue. Si vous n'êtes pas le destinataire de ce message, veuillez en informer l'expéditeur immédiatement et lui remettre l'original. -------------- next part -------------- An HTML attachment was scrubbed... URL: From kuku at physik.rwth-aachen.de Thu Sep 1 10:47:10 2016 From: kuku at physik.rwth-aachen.de (Christoph Kukulies) Date: Thu, 1 Sep 2016 10:47:10 +0200 Subject: [opencms-dev] image icons - is there a difference? Message-ID: An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: foacppdeodjppmdm.png Type: image/png Size: 826 bytes Desc: not available URL: From K.Schliemann at comundus.com Thu Sep 1 15:14:20 2016 From: K.Schliemann at comundus.com (Schliemann, Kai) Date: Thu, 1 Sep 2016 13:14:20 +0000 Subject: [opencms-dev] image icons - is there a difference? In-Reply-To: References: Message-ID: Hi Chris, this is not essential, but I recognized, that all images are now .png and no longer .gif. Best regards Kai Von: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] Im Auftrag von Christoph Kukulies Gesendet: Donnerstag, 1. September 2016 10:47 An: The OpenCms mailing list Betreff: [opencms-dev] image icons - is there a difference? Is there an essential difference between the "old" image icon and the "new" one? Just stumbled across this when uploading an image. [cid:image001.png at 01D20463.59349F60] -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 826 bytes Desc: image001.png URL: From alex at opencms.org Mon Sep 5 11:17:52 2016 From: alex at opencms.org (Alex Kandzior) Date: Mon, 5 Sep 2016 11:17:52 +0200 Subject: [opencms-dev] OpenCms Days 2016 - 3 weeks to go Message-ID: <15766E8B-1FA2-4530-BCBB-CBA900DFC6AF@opencms.org> Dear OpenCms Users, OpenCms Days will take place in 3 weeks from Monday 26th to Tuesday 27th. Check out the descriptions of the conference sessions and (for the first time) our practical "hands on" workshops here http://www.opencms-days.org/program/conference-program. Registration will close September 20. Workshop seats are distributed on a first come, first served basis and some workshops are already almost fully booked. So hurry up to get your ticket now! This event is the best opportunity to exchange ideas with the international community and learn about the latest OpenCms 10.5 release. Join us in Cologne and register here: http://www.opencms-days.org/order-your-ticket/. Kind regards, Alex. ------------------- Alexander Kandzior Alkacon Software GmbH - The OpenCms Experts http://www.alkacon.com - http://www.opencms.org From asalaris at consulmedia.it Wed Sep 7 10:07:30 2016 From: asalaris at consulmedia.it (Attilio Salaris) Date: Wed, 7 Sep 2016 10:07:30 +0200 Subject: [opencms-dev] File permissions on static export Message-ID: Hi, I'm using Opencms 9.5.3 on Tomcat 8 and Apache 2.2. I'm configured the file* opencms-importexport.xml *with CmsOnDemandStaticExportHandler class on node. When I republish an existing resource, the permessions on filesystem changed from 755 to 640 and Apache return Permission Denied for the resource republished, so the resource is not visible on the online website. This error disappear when I delete the entire export folder. Any ideas to resolve this problem? Thank you. Attilio -- *Attilio Salaris - ConsulMedia Srl* Via Mattei 72 - 09170 Oristano (OR) - ITALY tel +39 0783 71405; fax +39 0783 301727 e-mail: asalaris at consulmedia.it - http://www.consulmedia.it -------------- next part -------------- An HTML attachment was scrubbed... URL: From Honey.Bhandari at cognizant.com Wed Sep 7 10:12:33 2016 From: Honey.Bhandari at cognizant.com (Honey.Bhandari at cognizant.com) Date: Wed, 7 Sep 2016 08:12:33 +0000 Subject: [opencms-dev] File permissions on static export In-Reply-To: References: Message-ID: Permission issue – do chmod –R 755 to fix the issue. Regards Honey From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Attilio Salaris Sent: Wednesday, September 07, 2016 1:38 PM To: opencms-dev at opencms.org Subject: [opencms-dev] File permissions on static export Hi, I'm using Opencms 9.5.3 on Tomcat 8 and Apache 2.2. I'm configured the file opencms-importexport.xml with CmsOnDemandStaticExportHandler class on node. When I republish an existing resource, the permessions on filesystem changed from 755 to 640 and Apache return Permission Denied for the resource republished, so the resource is not visible on the online website. This error disappear when I delete the entire export folder. Any ideas to resolve this problem? Thank you. Attilio -- Attilio Salaris - ConsulMedia Srl Via Mattei 72 - 09170 Oristano (OR) - ITALY tel +39 0783 71405; fax +39 0783 301727 e-mail: asalaris at consulmedia.it - http://www.consulmedia.it This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. -------------- next part -------------- An HTML attachment was scrubbed... URL: From asalaris at consulmedia.it Wed Sep 7 10:22:23 2016 From: asalaris at consulmedia.it (Attilio Salaris) Date: Wed, 7 Sep 2016 10:22:23 +0200 Subject: [opencms-dev] File permissions on static export In-Reply-To: References: Message-ID: Thank you Honey for your fast reply. I've already changed the file's permission manually but when I changed a resources and I republish the permissions of this file changed in 640. Attilio 2016-09-07 10:12 GMT+02:00 : > Permission issue – do chmod –R 755 to fix the issue. > > > > Regards > > Honey > > > > *From:* opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces@ > opencms.org] *On Behalf Of *Attilio Salaris > *Sent:* Wednesday, September 07, 2016 1:38 PM > *To:* opencms-dev at opencms.org > *Subject:* [opencms-dev] File permissions on static export > > > > Hi, > > > > I'm using Opencms 9.5.3 on Tomcat 8 and Apache 2.2. I'm configured the file* opencms-importexport.xml > *with CmsOnDemandStaticExportHandler class on node. > > When I republish an existing resource, the permessions on filesystem > changed from 755 to 640 and Apache return Permission Denied for the > resource republished, so the resource is not visible on the online website. > > This error disappear when I delete the entire export folder. > > Any ideas to resolve this problem? > > > > Thank you. > > Attilio > > > > -- > > *Attilio Salaris - ConsulMedia Srl* > Via Mattei 72 - 09170 Oristano (OR) - ITALY > tel +39 0783 71405; fax +39 0783 301727 > e-mail: asalaris at consulmedia.it - > http://www.consulmedia.it > This e-mail and any files transmitted with it are for the sole use of the > intended recipient(s) and may contain confidential and privileged > information. If you are not the intended recipient(s), please reply to the > sender and destroy all copies of the original message. Any unauthorized > review, use, disclosure, dissemination, forwarding, printing or copying of > this email, and/or any action taken in reliance on the contents of this > e-mail is strictly prohibited and may be unlawful. Where permitted by > applicable law, this e-mail and other e-mail communications sent to and > from Cognizant e-mail addresses may be monitored. > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > > -- *Attilio Salaris - ConsulMedia Srl* Via Mattei 72 - 09170 Oristano (OR) - ITALY tel +39 0783 71405; fax +39 0783 301727 e-mail: asalaris at consulmedia.it - http://www.consulmedia.it -------------- next part -------------- An HTML attachment was scrubbed... URL: From Honey.Bhandari at cognizant.com Wed Sep 7 10:33:00 2016 From: Honey.Bhandari at cognizant.com (Honey.Bhandari at cognizant.com) Date: Wed, 7 Sep 2016 08:33:00 +0000 Subject: [opencms-dev] File permissions on static export In-Reply-To: References: Message-ID: 1. Try running tomcat as a service. 2. Try setting default permissions for new files and folders. Regards Honey From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Attilio Salaris Sent: Wednesday, September 07, 2016 1:52 PM To: The OpenCms mailing list Subject: Re: [opencms-dev] File permissions on static export Thank you Honey for your fast reply. I've already changed the file's permission manually but when I changed a resources and I republish the permissions of this file changed in 640. Attilio 2016-09-07 10:12 GMT+02:00 >: Permission issue – do chmod –R 755 to fix the issue. Regards Honey From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Attilio Salaris Sent: Wednesday, September 07, 2016 1:38 PM To: opencms-dev at opencms.org Subject: [opencms-dev] File permissions on static export Hi, I'm using Opencms 9.5.3 on Tomcat 8 and Apache 2.2. I'm configured the file opencms-importexport.xml with CmsOnDemandStaticExportHandler class on node. When I republish an existing resource, the permessions on filesystem changed from 755 to 640 and Apache return Permission Denied for the resource republished, so the resource is not visible on the online website. This error disappear when I delete the entire export folder. Any ideas to resolve this problem? Thank you. Attilio -- Attilio Salaris - ConsulMedia Srl Via Mattei 72 - 09170 Oristano (OR) - ITALY tel +39 0783 71405; fax +39 0783 301727 e-mail: asalaris at consulmedia.it - http://www.consulmedia.it This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev -- Attilio Salaris - ConsulMedia Srl Via Mattei 72 - 09170 Oristano (OR) - ITALY tel +39 0783 71405; fax +39 0783 301727 e-mail: asalaris at consulmedia.it - http://www.consulmedia.it This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. -------------- next part -------------- An HTML attachment was scrubbed... URL: From asalaris at consulmedia.it Wed Sep 7 12:02:43 2016 From: asalaris at consulmedia.it (Attilio Salaris) Date: Wed, 7 Sep 2016 12:02:43 +0200 Subject: [opencms-dev] File permissions on static export In-Reply-To: References: Message-ID: 1. Try running tomcat as a service. Done 2. Try setting default permissions for new files and folders. Done but apache always return error 403 on the republished resources. 2016-09-07 10:33 GMT+02:00 : > 1. Try running tomcat as a service. > > 2. Try setting default permissions for new files and folders. > > > > Regards > > Honey > > > > *From:* opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces@ > opencms.org] *On Behalf Of *Attilio Salaris > *Sent:* Wednesday, September 07, 2016 1:52 PM > *To:* The OpenCms mailing list > *Subject:* Re: [opencms-dev] File permissions on static export > > > > Thank you Honey for your fast reply. > > I've already changed the file's permission manually but when I changed a > resources and I republish the permissions of this file changed in 640. > > > > Attilio > > > > 2016-09-07 10:12 GMT+02:00 : > > Permission issue – do chmod –R 755 to fix the issue. > > > > Regards > > Honey > > > > *From:* opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces@ > opencms.org] *On Behalf Of *Attilio Salaris > *Sent:* Wednesday, September 07, 2016 1:38 PM > *To:* opencms-dev at opencms.org > *Subject:* [opencms-dev] File permissions on static export > > > > Hi, > > > > I'm using Opencms 9.5.3 on Tomcat 8 and Apache 2.2. I'm configured the file* opencms-importexport.xml > *with CmsOnDemandStaticExportHandler class on node. > > When I republish an existing resource, the permessions on filesystem > changed from 755 to 640 and Apache return Permission Denied for the > resource republished, so the resource is not visible on the online website. > > This error disappear when I delete the entire export folder. > > Any ideas to resolve this problem? > > > > Thank you. > > Attilio > > > > -- > > *Attilio Salaris - ConsulMedia Srl* > Via Mattei 72 - 09170 Oristano (OR) - ITALY > tel +39 0783 71405; fax +39 0783 301727 > e-mail: asalaris at consulmedia.it - > http://www.consulmedia.it > > This e-mail and any files transmitted with it are for the sole use of the > intended recipient(s) and may contain confidential and privileged > information. If you are not the intended recipient(s), please reply to the > sender and destroy all copies of the original message. Any unauthorized > review, use, disclosure, dissemination, forwarding, printing or copying of > this email, and/or any action taken in reliance on the contents of this > e-mail is strictly prohibited and may be unlawful. Where permitted by > applicable law, this e-mail and other e-mail communications sent to and > from Cognizant e-mail addresses may be monitored. > > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > > > > > -- > > *Attilio Salaris - ConsulMedia Srl* > Via Mattei 72 - 09170 Oristano (OR) - ITALY > tel +39 0783 71405; fax +39 0783 301727 > e-mail: asalaris at consulmedia.it - > http://www.consulmedia.it > This e-mail and any files transmitted with it are for the sole use of the > intended recipient(s) and may contain confidential and privileged > information. If you are not the intended recipient(s), please reply to the > sender and destroy all copies of the original message. Any unauthorized > review, use, disclosure, dissemination, forwarding, printing or copying of > this email, and/or any action taken in reliance on the contents of this > e-mail is strictly prohibited and may be unlawful. Where permitted by > applicable law, this e-mail and other e-mail communications sent to and > from Cognizant e-mail addresses may be monitored. > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > > -- *Attilio Salaris - ConsulMedia Srl* Via Mattei 72 - 09170 Oristano (OR) - ITALY tel +39 0783 71405; fax +39 0783 301727 e-mail: asalaris at consulmedia.it - http://www.consulmedia.it -------------- next part -------------- An HTML attachment was scrubbed... URL: From kuku at physik.rwth-aachen.de Thu Sep 8 09:46:11 2016 From: kuku at physik.rwth-aachen.de (Christoph Kukulies) Date: Thu, 8 Sep 2016 09:46:11 +0200 Subject: [opencms-dev] File permissions on static export In-Reply-To: References: Message-ID: <9a6489ad-949c-9d37-15c9-a9c9d5e73667@physik.rwth-aachen.de> An HTML attachment was scrubbed... URL: From asalaris at consulmedia.it Thu Sep 8 10:18:15 2016 From: asalaris at consulmedia.it (Attilio Salaris) Date: Thu, 8 Sep 2016 10:18:15 +0200 Subject: [opencms-dev] File permissions on static export In-Reply-To: <9a6489ad-949c-9d37-15c9-a9c9d5e73667@physik.rwth-aachen.de> References: <9a6489ad-949c-9d37-15c9-a9c9d5e73667@physik.rwth-aachen.de> Message-ID: Hi, I resolved my problem. I configured my Apache Virtual Host using this directive: Order Allow,Deny Allow from All Require all granted Now when i republish a resource on Opencms the error 403 not appear. Thank you. Attilio 2016-09-08 9:46 GMT+02:00 Christoph Kukulies : > What OS? > > What is the owner of the files? What owner are tomcat/apache2 running > under? > > > Am 07.09.2016 um 12:02 schrieb Attilio Salaris: > > 1. Try running tomcat as a service. > Done > > 2. Try setting default permissions for new files and folders. > Done > > but apache always return error 403 on the republished resources. > > 2016-09-07 10:33 GMT+02:00 : > >> 1. Try running tomcat as a service. >> >> 2. Try setting default permissions for new files and folders. >> >> >> >> Regards >> >> Honey >> >> >> >> *From:* opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at op >> encms.org] *On Behalf Of *Attilio Salaris >> *Sent:* Wednesday, September 07, 2016 1:52 PM >> *To:* The OpenCms mailing list >> *Subject:* Re: [opencms-dev] File permissions on static export >> >> >> >> Thank you Honey for your fast reply. >> >> I've already changed the file's permission manually but when I changed a >> resources and I republish the permissions of this file changed in 640. >> >> >> >> Attilio >> >> >> >> 2016-09-07 10:12 GMT+02:00 : >> >> Permission issue – do chmod –R 755 to fix the issue. >> >> >> >> Regards >> >> Honey >> >> >> >> *From:* opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at op >> encms.org] *On Behalf Of *Attilio Salaris >> *Sent:* Wednesday, September 07, 2016 1:38 PM >> *To:* opencms-dev at opencms.org >> *Subject:* [opencms-dev] File permissions on static export >> >> >> >> Hi, >> >> >> >> I'm using Opencms 9.5.3 on Tomcat 8 and Apache 2.2. I'm configured the >> file* opencms-importexport.xml *with CmsOnDemandStaticExportHandler >> class on node. >> >> When I republish an existing resource, the permessions on filesystem >> changed from 755 to 640 and Apache return Permission Denied for the >> resource republished, so the resource is not visible on the online website. >> >> This error disappear when I delete the entire export folder. >> >> Any ideas to resolve this problem? >> >> >> >> Thank you. >> >> Attilio >> >> >> >> -- >> >> *Attilio Salaris - ConsulMedia Srl* >> Via Mattei 72 - 09170 Oristano (OR) - ITALY >> tel +39 0783 71405 <%2B39%200783%2071405>; fax +39 0783 301727 >> e-mail: asalaris at consulmedia.it - >> http://www.consulmedia.it >> >> This e-mail and any files transmitted with it are for the sole use of the >> intended recipient(s) and may contain confidential and privileged >> information. If you are not the intended recipient(s), please reply to the >> sender and destroy all copies of the original message. Any unauthorized >> review, use, disclosure, dissemination, forwarding, printing or copying of >> this email, and/or any action taken in reliance on the contents of this >> e-mail is strictly prohibited and may be unlawful. Where permitted by >> applicable law, this e-mail and other e-mail communications sent to and >> from Cognizant e-mail addresses may be monitored. >> >> >> > -- > Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > > -- *Attilio Salaris - ConsulMedia Srl* Via Mattei 72 - 09170 Oristano (OR) - ITALY tel +39 0783 71405; fax +39 0783 301727 e-mail: asalaris at consulmedia.it - http://www.consulmedia.it -------------- next part -------------- An HTML attachment was scrubbed... URL: From kuku at physik.rwth-aachen.de Thu Sep 8 10:34:40 2016 From: kuku at physik.rwth-aachen.de (Christoph Kukulies) Date: Thu, 8 Sep 2016 10:34:40 +0200 Subject: [opencms-dev] File permissions on static export In-Reply-To: References: <9a6489ad-949c-9d37-15c9-a9c9d5e73667@physik.rwth-aachen.de> Message-ID: <73be813d-fb51-4814-17a9-8b125c2b019b@physik.rwth-aachen.de> An HTML attachment was scrubbed... URL: From always.work.in.progress at gmail.com Thu Sep 8 15:37:25 2016 From: always.work.in.progress at gmail.com (always.work.in.progress always.work.in.progress) Date: Thu, 8 Sep 2016 15:37:25 +0200 Subject: [opencms-dev] Opencms 10 - Opening any image gallery folder -> no image is shown !? :( Message-ID: hi all, i am experiencing the following problem: problem description: Inside Workplace Explorer: Opening any Image Gallery folder (type "image gallery") through context menù related command "Open gallery" ->pops out normal workplace window but *none of images present in the gallery are shown *!? :( (neither through manually filtering through "galleries" and picking any of them are shown) note: no output errors are shown in browser neither in opencms.log file normal .jpg images are present inside image gallery folder type (and clicking onto them, i can open them inside the browser) nothing changes if i publish or not the image gallery folder problem is presenting with all browser (Firefox, Chrome, IE) i have checked "/system/workplace/commons/open_ade_gallery.jsp" file, that i know is called from "Open gallery" menu command, and it is present. Environment: Linux Centos/tomcat/java - Opencms 10.0.0 - multisite configuration with apache + mod proxy as stated in http://documentation.opencms.org/opencms-documentation/server-installation/apache-webserver-configuration/ Are there any Opencms configurations/settings/files i should check in order to solve the problem ? thanks in advance, A. -------------- next part -------------- An HTML attachment was scrubbed... URL: From kuku at physik.rwth-aachen.de Fri Sep 9 12:01:32 2016 From: kuku at physik.rwth-aachen.de (Christoph Kukulies) Date: Fri, 9 Sep 2016 12:01:32 +0200 Subject: [opencms-dev] enabling Webdav Message-ID: Opencms 9.5.3: I'm in need of enabling Webdav (using Jlan interferes with Windows - it's all taking place in the Windows world) Setting up CMIS is also not an option - requires to run a GUI client. I just want to give our users a Windows Web folder (Windows 7) so they can put up some files into OpenCms. Even having to enter an authentication dialog (user name/password) is a bit too much. But anyway, I cannot get working at all at the moment. Setting load-on-startup in web.xml to a positive value >=0 doesn't have any effect. Is there a .jar file required that is missing in 9.5.3? I don't see any traces of "WebDav" in opencms.log also. Any clues? -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de From kuku at physik.rwth-aachen.de Fri Sep 9 12:53:09 2016 From: kuku at physik.rwth-aachen.de (Christoph Kukulies) Date: Fri, 9 Sep 2016 12:53:09 +0200 Subject: [opencms-dev] connecting to CMSI (in ROOT app) Message-ID: <351aa139-0df2-8f96-f81f-f48790559d13@physik.rwth-aachen.de> I can successfully run the CMSI-workbench locally on the Opencms-Server (runs in webapps/ROOT) by connecting to http://localhost:8880/cmsiatom can browse through the objects - all fine. But trying to connect over the network fails. How do I have to configure CMSI to be accessible outside of the localhost? -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de From john.bieling at gmx.de Fri Sep 9 13:09:46 2016 From: john.bieling at gmx.de (John Bieling) Date: Fri, 9 Sep 2016 13:09:46 +0200 Subject: [opencms-dev] enabling Webdav In-Reply-To: References: Message-ID: <9c8bf19d-590a-7bdc-e604-889c31557b3e@gmx.de> I have it running as follows, but do not know, if there is any better way: I have an SSL apache site for "webdav.mydomain.tld" setup with ServerName webdav.mydomain.tld SSLEngine On ProxyPass / http://127.0.0.1:8080/ and in server.xml I have a HTTP connector running on 8080 I used the windows build in option to connect to a webdav resource at https://webdav.mydomain.tld. For some reason, the password dialog re-prompts on correct password and I have to hit cancel eventually, but the VFS is accessible anyhow. The page itself is running on an AJP connector on port 8009. Good luck John Am 09.09.2016 um 12:01 schrieb Christoph Kukulies: > Opencms 9.5.3: > > I'm in need of enabling Webdav (using Jlan interferes with Windows - > it's all taking place in the Windows world) > Setting up CMIS is also not an option - requires to run a GUI client. > > I just want to give our users a Windows Web folder (Windows 7) so they > can put up some files into OpenCms. > Even having to enter an authentication dialog (user name/password) is > a bit too much. > > But anyway, I cannot get working at all at the moment. Setting > load-on-startup in web.xml to a positive value >=0 > doesn't have any effect. Is there a .jar file required that is missing > in 9.5.3? I don't see any traces of "WebDav" in opencms.log also. > > > Any clues? > > From deiverson at solutioncms.com Fri Sep 9 13:39:28 2016 From: deiverson at solutioncms.com (Deiverson Silveira) Date: Fri, 9 Sep 2016 08:39:28 -0300 Subject: [opencms-dev] Deploy OpenCms 9.5 in Jboss Wildfly 10 Message-ID: Hi, I try deploy but jboss wildfly 10.1.0 I have this error in my login, work parcial: Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:8080/project.war/resources/commons/login_logo.png Failed to load resource: the server responded with a status of 404 (Not Found) 2http://localhost:8080/project.war/resources/commons/login.png Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:8080/project.war/resources/commons/login_logo.png Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:8080/project.war/resources/commons/favicon.ico Failed to load resource: the server responded with a status of 404 (Not Found) I try change path remove .war and work: http://localhost:8080/project/resources/commons/favicon.ico I dont know why for somethings put name context .war, and others not... My jboss-web.xml this: /project.war I dont know why, somebody idea for solution? Thank you -- *www.solutioncms.com The Brazilian Official Provider OpenCms* -------------- next part -------------- An HTML attachment was scrubbed... URL: From alex at opencms.org Tue Sep 13 14:50:00 2016 From: alex at opencms.org (Alex Kandzior) Date: Tue, 13 Sep 2016 14:50:00 +0200 Subject: [opencms-dev] OpenCms Days 2016 - Less than 2 weeks to go Message-ID: <7048CDAA-A663-45D1-A5F5-97F99F7C0CDA@opencms.org> Dear OpenCms Users, OpenCms Days will take place in less than 2 weeks from Monday 26th to Tuesday 27th. Check out the descriptions of the conference sessions and (for the first time) our practical "hands on" workshops here http://opencms-days.org/program/conference-program. NEW: The conference program as a PDF for offline reading http://opencms-days.org/program/download. Registration will close September 22. Workshop seats are distributed on a first come, first served basis and some workshops are already fully booked. So hurry up to get your ticket now! This event is the best opportunity to exchange ideas with the international community and learn about the latest OpenCms 10.5 release. Join us in Cologne and register today http://opencms-days.org/order-your-ticket/. Kind regards, Alex. ------------------- Alexander Kandzior Alkacon Software GmbH - The OpenCms Experts http://www.alkacon.com - http://www.opencms.org _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev From always.work.in.progress at gmail.com Tue Sep 13 16:11:08 2016 From: always.work.in.progress at gmail.com (always.work.in.progress always.work.in.progress) Date: Tue, 13 Sep 2016 16:11:08 +0200 Subject: [opencms-dev] Opencms 10 - Opening any image gallery folder -> no image is shown !? :( Message-ID: hi again, i am a little desperate..after hours of debugging i discovered the following: in a fresh, newly installed Opencm 10.0.x environment, not multisite, but served with tomcat7/java7 in a standard configuration, through port 8080, ImageGallery problem does not occur (i can create imagegallery and/or copy existing ones, and i can open them and i can see image thumbs through "Open Gallery" menù function) while, if a reconfigure the same enviroment (mysql DB and Opencms 10.0.x modules not touched) in una multisite configuration (pages served through apache mod_proxy) the problem is there (i can create new imagegalleries or copy existing ones, but "opening them", image thumbs are not shown in the workplace!) i have verified all apache settings and i also tried with "proxy_ajp" technique as shown here: http://documentation.opencms.org/opencms-documentation/server-installation/apache-webserver-configuration/#virtual_host_configuration and all works perfectly (no errors inside opencms.log) but the "image gallery" problem is still present. can anyone help me ? Can anyone confirm that in a linux Centos6/tomcat7/java7 opencms multisite environment, "image galleries" can be copied/created and opening them inside workplace you can see the related image thumbs ? thank you in advance, A. 2016-09-08 15:37 GMT+02:00 always.work.in.progress always.work.in.progress < always.work.in.progress at gmail.com>: > hi all, > i am experiencing the following problem: > > problem description: > Inside Workplace Explorer: > Opening any Image Gallery folder (type "image gallery") through context > menù related command "Open gallery" ->pops out normal workplace window but *none > of images present in the gallery are shown *!? :( > (neither through manually filtering through "galleries" and picking any of > them are shown) > > note: > no output errors are shown in browser neither in opencms.log file > normal .jpg images are present inside image gallery folder type (and > clicking onto them, i can open them inside the browser) > nothing changes if i publish or not the image gallery folder > problem is presenting with all browser (Firefox, Chrome, IE) > i have checked "/system/workplace/commons/open_ade_gallery.jsp" file, > that i know is called from "Open gallery" menu command, > and it is present. > > Environment: > Linux Centos/tomcat/java - Opencms 10.0.0 - multisite configuration with > apache + mod proxy as stated in http://documentation.opencms. > org/opencms-documentation/server-installation/apache- > webserver-configuration/ > > Are there any Opencms configurations/settings/files i should check in > order to solve the problem ? > > thanks in advance, > A. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From gfrancis2 at cancercare.mb.ca Thu Sep 15 15:41:33 2016 From: gfrancis2 at cancercare.mb.ca (Gratian Francis) Date: Thu, 15 Sep 2016 13:41:33 +0000 Subject: [opencms-dev] Opencms 10 - Newbie Webforms Question. Message-ID: Hi, I'm using the demo Apollo template webform module to create a webform, and trying to add a text area that has a max length. I've tried adding 'maxlength=' to the pipe separated list of parameters, however it doesn't it does not seem to work, though other attribute parameters such as placeholder however do work. Cheers, Gratian Francis Junior Programmer Analyst CancerCare Manitoba CC40-825 Sherbrook Street Winnipeg, MB R3A 1M5 Ph: 204-784-6403 Cell: 204-794-1230 gfrancis2 at cancercare.mb.ca [CCMB-master-logo-cmyk] Planned Absences: None for now, maybe next year. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 3835 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: opcmswebformhelp.png Type: image/png Size: 49826 bytes Desc: opcmswebformhelp.png URL: -------------- next part -------------- This email and/or any documents in this transmission is intended for the addressee(s) only and may contain legally privileged or confidential information. Any unauthorized use, disclosure, distribution, copying or dissemination is strictly prohibited. If you receive this transmission in error, please notify the sender immediately and return the original. Ce courriel et tout document dans cette transmission est destiné à la personne ou aux personnes à qui il est adressé. Il peut contenir des informations privilégiées ou confidentielles. Toute utilisation, divulgation, distribution, copie, ou diffusion non autorisée est strictement défendue. Si vous n'êtes pas le destinataire de ce message, veuillez en informer l'expéditeur immédiatement et lui remettre l'original. -------------- next part -------------- An HTML attachment was scrubbed... URL: From kuku at physik.rwth-aachen.de Fri Sep 16 12:38:32 2016 From: kuku at physik.rwth-aachen.de (Christoph Kukulies) Date: Fri, 16 Sep 2016 12:38:32 +0200 Subject: [opencms-dev] need help in starting opencms 10.0.1 docker image Message-ID: <84093edb-2411-de1b-f4f2-b783e9f79b9f@physik.rwth-aachen.de> I need some help in running docker images. I installed (Windows 7) the docker toolbox (which gives me the docker quickstart window) kuku at W7A04 MINGW64 /u $ docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES c6a9d84ea03a docker/whalesay "cowsay boo" 10 minutes ago Exited (0) 10 minutes ago infallible_carson 8aeb4f34da50 hello-world "/hello" 16 minutes ago Exited (0) 16 minutes ago gigantic_pare e38364c10cfe alkacon/opencms-docker:10.0.1 "/root/opencms-run.sh" 50 minutes ago Created furious_rosalind 07003df28b7c alkacon/opencms-docker:10.0.1 "/root/opencms-run.sh" 58 minutes ago Up 58 minutes 0.0.0.0:8080->8080/tcp trusting_shannon kuku at W7A04 MINGW64 /u For one: I don't see any process listening at port 8080 on localhost, consequently I cannot connect the browser to that port. I was following the instructions on https://hub.docker.com/r/alkacon/opencms-docker/ Can anyone help? -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de From kuku at physik.rwth-aachen.de Fri Sep 16 18:12:17 2016 From: kuku at physik.rwth-aachen.de (Christoph Kukulies) Date: Fri, 16 Sep 2016 18:12:17 +0200 Subject: [opencms-dev] need help in starting opencms 10.0.1 docker image In-Reply-To: <84093edb-2411-de1b-f4f2-b783e9f79b9f@physik.rwth-aachen.de> References: <84093edb-2411-de1b-f4f2-b783e9f79b9f@physik.rwth-aachen.de> Message-ID: Solved it. It's been a port thing. I edited the port mapping (NAT) in the default virtual box VM and mapped port 8080 to port 80 on localhost (127.0.0.1). Probably mapping 8080 to 8080 would work either but this way it's nicer. Am 16.09.2016 um 12:38 schrieb Christoph Kukulies: > I need some help in running docker images. I installed (Windows 7) the > docker toolbox (which gives me the docker quickstart window) > > > kuku at W7A04 MINGW64 /u > $ docker ps -a > CONTAINER ID IMAGE COMMAND CREATED > STATUS PORTS NAMES > c6a9d84ea03a docker/whalesay "cowsay > boo" 10 minutes ago Exited (0) 10 minutes > ago infallible_carson > 8aeb4f34da50 hello-world "/hello" 16 minutes > ago Exited (0) 16 minutes ago > gigantic_pare > e38364c10cfe alkacon/opencms-docker:10.0.1 > "/root/opencms-run.sh" 50 minutes ago Created furious_rosalind > 07003df28b7c alkacon/opencms-docker:10.0.1 > "/root/opencms-run.sh" 58 minutes ago Up 58 > minutes 0.0.0.0:8080->8080/tcp trusting_shannon > > kuku at W7A04 MINGW64 /u > > For one: I don't see any process listening at port 8080 on localhost, > consequently I cannot connect the browser to that port. > > I was following the instructions on > > https://hub.docker.com/r/alkacon/opencms-docker/ > > Can anyone help? > -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de From t.schmidt at md-network.de Sun Sep 18 21:54:32 2016 From: t.schmidt at md-network.de (Thomas Schmidt) Date: Sun, 18 Sep 2016 21:54:32 +0200 Subject: [opencms-dev] access rights messed ?! - help needed ! Message-ID: <46783900-3C4D-4BF0-973A-39629A05222F@md-network.de> Hello, i have seperated a site into sections by using subsitemap with local content to give more granular permissions. Therefore i reduced permissions for group „Users“ only to „read“ and i created subsitemap where a dedicated user group has full permissions (eg. for subsitemap „A“ group „Users“ can only read, group „Usergroup-A“ has full permissions, Administrators have full permissions, for all this permissions to one subsitemap it is additionally set to over write settings from higher folders and to inherit rights to sub folders). When I edit now a XML (e.g. text section) element as normal user, member of the group which has full access to the subsitemap , and try to publish - it is forbidden (e.g. user „Member-Of-Usergroup-A“ can edit an element of subsitemap „A“ but not publish). Checking the rights (from Explorer) it tells me that the group ( „Usergroup-A“ ) has full access _including_ publishing. I’m lost - especially it seem to work few week ago … I tried to reset all permissions to the folder and build permissions up from scratch - no change. If i check directly permissions of the XML file i edit as nomal user („Member-Of-Usergroup-A“ where group „Usergroup-A“ has full permission to the folder (inclusive override parent permissions and inherit to child folders)) i see even that the Group should have publishing rights - but still the user can’t publish. I gave even the user directly to the XML file full rights - still he cannot publish. The user is in role "Category editor", „Editor", "Element author“ - anything i missed here ? I’m lost - any advises welcome - thanks a lot ! BR ThomasS From gfrancis2 at cancercare.mb.ca Mon Sep 19 18:59:49 2016 From: gfrancis2 at cancercare.mb.ca (Gratian Francis) Date: Mon, 19 Sep 2016 16:59:49 +0000 Subject: [opencms-dev] no space left on device error - when trying to access launchpad tools Message-ID: Hello, I keep receiving the following error details below whenever I attempt the access various tools in the launch pad such as module management and site management, as well as when I try to export the database in database management, I'm unsure if it's something in my opencms project or a problem on the server that's causing this because as far as I know the server has more than enough space. An error occurred.No space left on device java.io.IOException: No space left on device at java.io.FileOutputStream.writeBytes(Native Method) at java.io.FileOutputStream.write(FileOutputStream.java:313) at org.opencms.loader.CmsJspLoader.updateJsp(CmsJspLoader.java:864) at org.opencms.loader.CmsJspLoader.load(CmsJspLoader.java:526) at org.opencms.loader.CmsResourceManager.loadResource(CmsResourceManager.java:1191) at org.opencms.main.OpenCmsCore.showResource(OpenCmsCore.java:1776) at org.opencms.main.OpenCmsServlet.doGet(OpenCmsServlet.java:159) at org.opencms.main.OpenCmsServlet.doPost(OpenCmsServlet.java:175) at javax.servlet.http.HttpServlet.service(HttpServlet.java:648) at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:292) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:240) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:720) at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:466) at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:391) at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:318) at org.opencms.flex.CmsFlexRequestDispatcher.forward(CmsFlexRequestDispatcher.java:111) at org.opencms.util.CmsRequestUtil.forwardRequest(CmsRequestUtil.java:492) at org.opencms.workplace.tools.CmsToolManager.jspForwardPage(CmsToolManager.java:483) at org.opencms.workplace.administration.CmsAdminDialog.displayDialog(CmsAdminDialog.java:92) at org.apache.jsp.WEB_002dINF.jsp.offline.system.workplace.views.admin.admin_002dmain_jsp._jspService(admin_002dmain_jsp.java:114) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70) at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:438) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:396) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:340) at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:292) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:240) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:720) at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:466) at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:391) at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:318) at org.opencms.flex.CmsFlexRequestDispatcher.forward(CmsFlexRequestDispatcher.java:111) at org.opencms.loader.CmsJspLoader.load(CmsJspLoader.java:528) at org.opencms.loader.CmsResourceManager.loadResource(CmsResourceManager.java:1191) at org.opencms.main.OpenCmsCore.showResource(OpenCmsCore.java:1776) at org.opencms.main.OpenCmsServlet.doGet(OpenCmsServlet.java:159) at org.opencms.main.OpenCmsServlet.doPost(OpenCmsServlet.java:175) at javax.servlet.http.HttpServlet.service(HttpServlet.java:648) at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:292) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:240) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:720) at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:466) at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:391) at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:318) at org.opencms.flex.CmsFlexRequestDispatcher.forward(CmsFlexRequestDispatcher.java:111) at org.opencms.util.CmsRequestUtil.forwardRequest(CmsRequestUtil.java:492) at org.opencms.workplace.tools.CmsToolManager.jspForwardPage(CmsToolManager.java:483) at org.opencms.workplace.tools.CmsToolManager.jspForwardTool(CmsToolManager.java:511) at org.opencms.workplace.tools.sites.CmsSitesOverviewList.executeListSingleActions(CmsSitesOverviewList.java:229) at org.opencms.workplace.list.A_CmsListDialog.actionDialog(A_CmsListDialog.java:355) at org.opencms.workplace.list.A_CmsListDialog.displayDialog(A_CmsListDialog.java:425) at org.opencms.workplace.list.A_CmsListDialog.displayDialog(A_CmsListDialog.java:410) at org.apache.jsp.WEB_002dINF.jsp.offline.system.workplace.admin.sites.index_jsp._jspService(index_jsp.java:109) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70) at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:438) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:396) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:340) at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:292) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:240) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:720) at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:466) at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:391) at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:318) at org.opencms.loader.CmsJspLoader.load(CmsJspLoader.java:528) at org.opencms.loader.CmsResourceManager.loadResource(CmsResourceManager.java:1191) at org.opencms.main.OpenCmsCore.showResource(OpenCmsCore.java:1776) at org.opencms.main.OpenCmsServlet.doGet(OpenCmsServlet.java:159) at org.opencms.main.OpenCmsServlet.doPost(OpenCmsServlet.java:175) at javax.servlet.http.HttpServlet.service(HttpServlet.java:648) at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:292) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:240) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:212) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:106) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:502) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:141) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79) at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:616) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:88) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:522) at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1095) at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:672) at org.apache.tomcat.util.net.AprEndpoint$SocketProcessor.doRun(AprEndpoint.java:2500) at org.apache.tomcat.util.net.AprEndpoint$SocketProcessor.run(AprEndpoint.java:2489) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.lang.Thread.run(Thread.java:745) Cheers, Gratian Francis Junior Programmer Analyst CancerCare Manitoba CC40-825 Sherbrook Street Winnipeg, MB R3A 1M5 Ph: 204-784-6403 Cell: 204-794-1230 gfrancis2 at cancercare.mb.ca [CCMB-master-logo-cmyk] Planned Absences: None for now, maybe next year. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 3835 bytes Desc: image001.jpg URL: -------------- next part -------------- This email and/or any documents in this transmission is intended for the addressee(s) only and may contain legally privileged or confidential information. Any unauthorized use, disclosure, distribution, copying or dissemination is strictly prohibited. If you receive this transmission in error, please notify the sender immediately and return the original. Ce courriel et tout document dans cette transmission est destiné à la personne ou aux personnes à qui il est adressé. Il peut contenir des informations privilégiées ou confidentielles. Toute utilisation, divulgation, distribution, copie, ou diffusion non autorisée est strictement défendue. Si vous n'êtes pas le destinataire de ce message, veuillez en informer l'expéditeur immédiatement et lui remettre l'original. -------------- next part -------------- An HTML attachment was scrubbed... URL: From flakstad at npolar.no Tue Sep 20 09:55:58 2016 From: flakstad at npolar.no (Paul-Inge Flakstad) Date: Tue, 20 Sep 2016 07:55:58 +0000 Subject: [opencms-dev] no space left on device error - when trying to access launchpad tools In-Reply-To: References: Message-ID: <02f4507c218d4f8db220dad341c950e2@MAUD.npolar.no> Hi Gratian, You are out of disk space. PS: To free up a little bit of some space immediately, you can perhaps delete some of your old log files. I'd also advise you to check their sizes. If your log files seem absurdly big, you may have an error that's being logged very frequently. We experienced this once, and we didn't discover it before we eventually ran out of disk space. It was logged on *every* request, generating GBs of log file data in no time at all. Turned out it was an easy fix as well. ;) HTH and good luck, Paul From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Gratian Francis Sent: 19. september 2016 19:00 To: 'opencms-dev at opencms.org' Subject: [opencms-dev] no space left on device error - when trying to access launchpad tools Hello, I keep receiving the following error details below whenever I attempt the access various tools in the launch pad such as module management and site management, as well as when I try to export the database in database management, I'm unsure if it's something in my opencms project or a problem on the server that's causing this because as far as I know the server has more than enough space. An error occurred.No space left on device java.io.IOException: No space left on device at java.io.FileOutputStream.writeBytes(Native Method) at java.io.FileOutputStream.write(FileOutputStream.java:313) at org.opencms.loader.CmsJspLoader.updateJsp(CmsJspLoader.java:864) at org.opencms.loader.CmsJspLoader.load(CmsJspLoader.java:526) at org.opencms.loader.CmsResourceManager.loadResource(CmsResourceManager.java:1191) at org.opencms.main.OpenCmsCore.showResource(OpenCmsCore.java:1776) at org.opencms.main.OpenCmsServlet.doGet(OpenCmsServlet.java:159) at org.opencms.main.OpenCmsServlet.doPost(OpenCmsServlet.java:175) at javax.servlet.http.HttpServlet.service(HttpServlet.java:648) at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:292) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:240) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:720) at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:466) at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:391) at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:318) at org.opencms.flex.CmsFlexRequestDispatcher.forward(CmsFlexRequestDispatcher.java:111) at org.opencms.util.CmsRequestUtil.forwardRequest(CmsRequestUtil.java:492) at org.opencms.workplace.tools.CmsToolManager.jspForwardPage(CmsToolManager.java:483) at org.opencms.workplace.administration.CmsAdminDialog.displayDialog(CmsAdminDialog.java:92) at org.apache.jsp.WEB_002dINF.jsp.offline.system.workplace.views.admin.admin_002dmain_jsp._jspService(admin_002dmain_jsp.java:114) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70) at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:438) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:396) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:340) at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:292) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:240) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:720) at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:466) at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:391) at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:318) at org.opencms.flex.CmsFlexRequestDispatcher.forward(CmsFlexRequestDispatcher.java:111) at org.opencms.loader.CmsJspLoader.load(CmsJspLoader.java:528) at org.opencms.loader.CmsResourceManager.loadResource(CmsResourceManager.java:1191) at org.opencms.main.OpenCmsCore.showResource(OpenCmsCore.java:1776) at org.opencms.main.OpenCmsServlet.doGet(OpenCmsServlet.java:159) at org.opencms.main.OpenCmsServlet.doPost(OpenCmsServlet.java:175) at javax.servlet.http.HttpServlet.service(HttpServlet.java:648) at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:292) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:240) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:720) at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:466) at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:391) at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:318) at org.opencms.flex.CmsFlexRequestDispatcher.forward(CmsFlexRequestDispatcher.java:111) at org.opencms.util.CmsRequestUtil.forwardRequest(CmsRequestUtil.java:492) at org.opencms.workplace.tools.CmsToolManager.jspForwardPage(CmsToolManager.java:483) at org.opencms.workplace.tools.CmsToolManager.jspForwardTool(CmsToolManager.java:511) at org.opencms.workplace.tools.sites.CmsSitesOverviewList.executeListSingleActions(CmsSitesOverviewList.java:229) at org.opencms.workplace.list.A_CmsListDialog.actionDialog(A_CmsListDialog.java:355) at org.opencms.workplace.list.A_CmsListDialog.displayDialog(A_CmsListDialog.java:425) at org.opencms.workplace.list.A_CmsListDialog.displayDialog(A_CmsListDialog.java:410) at org.apache.jsp.WEB_002dINF.jsp.offline.system.workplace.admin.sites.index_jsp._jspService(index_jsp.java:109) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70) at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:438) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:396) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:340) at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:292) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:240) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:720) at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:466) at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:391) at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:318) at org.opencms.loader.CmsJspLoader.load(CmsJspLoader.java:528) at org.opencms.loader.CmsResourceManager.loadResource(CmsResourceManager.java:1191) at org.opencms.main.OpenCmsCore.showResource(OpenCmsCore.java:1776) at org.opencms.main.OpenCmsServlet.doGet(OpenCmsServlet.java:159) at org.opencms.main.OpenCmsServlet.doPost(OpenCmsServlet.java:175) at javax.servlet.http.HttpServlet.service(HttpServlet.java:648) at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:292) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:240) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:207) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:212) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:106) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:502) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:141) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79) at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:616) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:88) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:522) at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1095) at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:672) at org.apache.tomcat.util.net.AprEndpoint$SocketProcessor.doRun(AprEndpoint.java:2500) at org.apache.tomcat.util.net.AprEndpoint$SocketProcessor.run(AprEndpoint.java:2489) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.lang.Thread.run(Thread.java:745) Cheers, Gratian Francis Junior Programmer Analyst CancerCare Manitoba CC40-825 Sherbrook Street Winnipeg, MB R3A 1M5 Ph: 204-784-6403 Cell: 204-794-1230 gfrancis2 at cancercare.mb.ca [CCMB-master-logo-cmyk] Planned Absences: None for now, maybe next year. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 3835 bytes Desc: image001.jpg URL: From argrico at gmail.com Tue Sep 20 14:03:05 2016 From: argrico at gmail.com (Alberto Gallardo) Date: Tue, 20 Sep 2016 14:03:05 +0200 Subject: [opencms-dev] no space left on device error - when trying to access launchpad tools In-Reply-To: References: Message-ID: > as far as I know the server has more than enough space. > How are you so sure? If I'm not mistaken, this output corresponds to a build_10_0_0 version. In this case, the error isn't 'seasoned' and is quite unambiguous. Tomcat cannot write a jsp into its 'work' directory. > > An error occurred.No space left on device > > > > java.io.IOException: No space left on device > > at java.io.FileOutputStream.writeBytes(Native Method) > > at java.io.FileOutputStream.write(FileOutputStream.java: > 313) > > at org.opencms.loader.CmsJspLoader.updateJsp( > CmsJspLoader.java:864) > [...] -------------- next part -------------- An HTML attachment was scrubbed... URL: From t.schmidt at md-network.de Wed Sep 21 12:15:58 2016 From: t.schmidt at md-network.de (Thomas Schmidt) Date: Wed, 21 Sep 2016 12:15:58 +0200 Subject: [opencms-dev] access rights messed ?! - help needed ! In-Reply-To: <46783900-3C4D-4BF0-973A-39629A05222F@md-network.de> References: <46783900-3C4D-4BF0-973A-39629A05222F@md-network.de> Message-ID: Hello, simplifying the question: in case i have all permissions set to „allowed“ (=e.g. +r+w+v+c+d ) for a folder and for a group of users which explicitly allows direct publishing (= +d) - and the users have roles "Category editor", „Editor", "Element author“ - is that not enough to publish ? In my case users can’t publish from that folder even when having role & permission as described in line above. Is there anything else what can prevent publish rights ? Thanks BR ThomasS > Am 18.09.2016 um 21:54 schrieb Thomas Schmidt : > > Hello, > > i have seperated a site into sections by using subsitemap with local content to give more granular permissions. Therefore i reduced permissions for group „Users“ only to „read“ and i created subsitemap where a dedicated user group has full permissions (eg. for subsitemap „A“ group „Users“ can only read, group „Usergroup-A“ has full permissions, Administrators have full permissions, for all this permissions to one subsitemap it is additionally set to over write settings from higher folders and to inherit rights to sub folders). > > When I edit now a XML (e.g. text section) element as normal user, member of the group which has full access to the subsitemap , and try to publish - it is forbidden (e.g. user „Member-Of-Usergroup-A“ can edit an element of subsitemap „A“ but not publish). Checking the rights (from Explorer) it tells me that the group ( „Usergroup-A“ ) has full access _including_ publishing. > > I’m lost - especially it seem to work few week ago … > > I tried to reset all permissions to the folder and build permissions up from scratch - no change. If i check directly permissions of the XML file i edit as nomal user („Member-Of-Usergroup-A“ where group „Usergroup-A“ has full permission to the folder (inclusive override parent permissions and inherit to child folders)) i see even that the Group should have publishing rights - but still the user can’t publish. I gave even the user directly to the XML file full rights - still he cannot publish. > > The user is in role "Category editor", „Editor", "Element author“ - anything i missed here ? > > > I’m lost - any advises welcome - thanks a lot ! > > > BR > ThomasS From Honey.Bhandari at cognizant.com Wed Sep 21 12:18:39 2016 From: Honey.Bhandari at cognizant.com (Honey.Bhandari at cognizant.com) Date: Wed, 21 Sep 2016 10:18:39 +0000 Subject: [opencms-dev] access rights messed ?! - help needed ! In-Reply-To: References: <46783900-3C4D-4BF0-973A-39629A05222F@md-network.de> Message-ID: Check the project management and fix the owner / manager group for the project. Regards Honey -----Original Message----- From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Thomas Schmidt Sent: Wednesday, September 21, 2016 3:46 PM To: The OpenCms mailing list Subject: Re: [opencms-dev] access rights messed ?! - help needed ! Hello, simplifying the question: in case i have all permissions set to „allowed“ (=e.g. +r+w+v+c+d ) for a folder and for a group of users which explicitly allows direct publishing (= +d) - and the users have roles "Category editor", „Editor", "Element author“ - is that not enough to publish ? In my case users can’t publish from that folder even when having role & permission as described in line above. Is there anything else what can prevent publish rights ? Thanks BR ThomasS > Am 18.09.2016 um 21:54 schrieb Thomas Schmidt : > > Hello, > > i have seperated a site into sections by using subsitemap with local content to give more granular permissions. Therefore i reduced permissions for group „Users“ only to „read“ and i created subsitemap where a dedicated user group has full permissions (eg. for subsitemap „A“ group „Users“ can only read, group „Usergroup-A“ has full permissions, Administrators have full permissions, for all this permissions to one subsitemap it is additionally set to over write settings from higher folders and to inherit rights to sub folders). > > When I edit now a XML (e.g. text section) element as normal user, member of the group which has full access to the subsitemap , and try to publish - it is forbidden (e.g. user „Member-Of-Usergroup-A“ can edit an element of subsitemap „A“ but not publish). Checking the rights (from Explorer) it tells me that the group ( „Usergroup-A“ ) has full access _including_ publishing. > > I’m lost - especially it seem to work few week ago … > > I tried to reset all permissions to the folder and build permissions up from scratch - no change. If i check directly permissions of the XML file i edit as nomal user („Member-Of-Usergroup-A“ where group „Usergroup-A“ has full permission to the folder (inclusive override parent permissions and inherit to child folders)) i see even that the Group should have publishing rights - but still the user can’t publish. I gave even the user directly to the XML file full rights - still he cannot publish. > > The user is in role "Category editor", „Editor", "Element author“ - anything i missed here ? > > > I’m lost - any advises welcome - thanks a lot ! > > > BR > ThomasS _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. From t.schmidt at md-network.de Wed Sep 21 12:33:57 2016 From: t.schmidt at md-network.de (Thomas Schmidt) Date: Wed, 21 Sep 2016 12:33:57 +0200 Subject: [opencms-dev] access rights messed ?! - help needed ! In-Reply-To: References: <46783900-3C4D-4BF0-973A-39629A05222F@md-network.de> Message-ID: <0A15B7A6-4862-49B1-A9E6-388484C984DE@md-network.de> Hello, thanks for the reply! The users who are supposed to be able to edit the content of the folder which are organized in a dedicated group which has full access to the folder (including responsible & inherit on subfolders & overwrite inherited flags) are as well part of the generic „Users“ group. The project has as Manager Group "Administrators“ and as "User Group“ the group „Users“ - where the users which are supposed to publish are part of. I hope the users don’t need to be Managers of the project ? Thanks Kind regards ThomasS > Am 21.09.2016 um 12:18 schrieb : > > Check the project management and fix the owner / manager group for the project. > > Regards > Honey > >> -----Original Message----- >> From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Thomas Schmidt >> Sent: Wednesday, September 21, 2016 3:46 PM >> To: The OpenCms mailing list >> Subject: Re: [opencms-dev] access rights messed ?! - help needed ! >> >> Hello, >> >> simplifying the question: >> >> in case i have all permissions set to „allowed“ (=e.g. +r+w+v+c+d ) for a folder and for a group of users which explicitly allows direct publishing (= +d) - and the users have roles "Category editor", „Editor", "Element author“ - is that not enough to publish ? >> >> In my case users can’t publish from that folder even when having role & permission as described in line above. Is there anything else what can prevent publish rights ? >> >> Thanks >> BR >> ThomasS >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Honey.Bhandari at cognizant.com Wed Sep 21 12:37:20 2016 From: Honey.Bhandari at cognizant.com (Honey.Bhandari at cognizant.com) Date: Wed, 21 Sep 2016 10:37:20 +0000 Subject: [opencms-dev] access rights messed ?! - help needed ! Message-ID: You need to update these as well, try updating atleast the user group. Regards Honey From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Thomas Schmidt Sent: Wednesday, September 21, 2016 4:04 PM To: The OpenCms mailing list Subject: Re: [opencms-dev] access rights messed ?! - help needed ! Hello, thanks for the reply! The users who are supposed to be able to edit the content of the folder which are organized in a dedicated group which has full access to the folder (including responsible & inherit on subfolders & overwrite inherited flags) are as well part of the generic „Users“ group. The project has as Manager Group "Administrators“ and as "User Group“ the group „Users“ - where the users which are supposed to publish are part of. I hope the users don’t need to be Managers of the project ? Thanks Kind regards ThomasS Am 21.09.2016 um 12:18 schrieb > >: Check the project management and fix the owner / manager group for the project. Regards Honey -----Original Message----- From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Thomas Schmidt Sent: Wednesday, September 21, 2016 3:46 PM To: The OpenCms mailing list > Subject: Re: [opencms-dev] access rights messed ?! - help needed ! Hello, simplifying the question: in case i have all permissions set to „allowed“ (=e.g. +r+w+v+c+d ) for a folder and for a group of users which explicitly allows direct publishing (= +d) - and the users have roles "Category editor", „Editor", "Element author“ - is that not enough to publish ? In my case users can’t publish from that folder even when having role & permission as described in line above. Is there anything else what can prevent publish rights ? Thanks BR ThomasS This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. -------------- next part -------------- An HTML attachment was scrubbed... URL: From kucharczyk at silpion.de Wed Sep 21 14:11:34 2016 From: kucharczyk at silpion.de (Martin Kucharczyk) Date: Wed, 21 Sep 2016 14:11:34 +0200 (CEST) Subject: [opencms-dev] Categories duplicated in sitemap editor In-Reply-To: <1932992261.27885424.1474459550431.JavaMail.zimbra@silpion.de> Message-ID: <134424391.27885835.1474459894700.JavaMail.zimbra@silpion.de> Hello! I am using OpenCms 10.0.1 and have the following problem. Local categories (i.e. /sites/default/.categories/Test) are duplicated in the sitemap editor (although there is only this one category). If I delete one "both" are gone. Global Categories (i.e. /system/modules/my.module/.categories/Test) are fine. So I am pretty sure it is just a problem in the view. Is it a bug in 10.0.1? I couldn't find a bug report on github. Thanks in advance. Best regards Martin -------------- next part -------------- An HTML attachment was scrubbed... URL: From Honey.Bhandari at cognizant.com Wed Sep 21 14:36:54 2016 From: Honey.Bhandari at cognizant.com (Honey.Bhandari at cognizant.com) Date: Wed, 21 Sep 2016 12:36:54 +0000 Subject: [opencms-dev] Categories duplicated in sitemap editor In-Reply-To: <134424391.27885835.1474459894700.JavaMail.zimbra@silpion.de> References: <1932992261.27885424.1474459550431.JavaMail.zimbra@silpion.de> <134424391.27885835.1474459894700.JavaMail.zimbra@silpion.de> Message-ID: Yes, I as well noticed while implementing for a customer. You may log this as a bug. Regards Honey From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Martin Kucharczyk Sent: Wednesday, September 21, 2016 5:42 PM To: opencms-dev at opencms.org Subject: [opencms-dev] Categories duplicated in sitemap editor Hello! I am using OpenCms 10.0.1 and have the following problem. Local categories (i.e. /sites/default/.categories/Test) are duplicated in the sitemap editor (although there is only this one category). If I delete one "both" are gone. Global Categories (i.e. /system/modules/my.module/.categories/Test) are fine. So I am pretty sure it is just a problem in the view. Is it a bug in 10.0.1? I couldn't find a bug report on github. Thanks in advance. Best regards Martin This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. -------------- next part -------------- An HTML attachment was scrubbed... URL: From athiecampollo at gmail.com Wed Sep 21 16:44:59 2016 From: athiecampollo at gmail.com (Jose Fermin Athie Campollo) Date: Wed, 21 Sep 2016 14:44:59 +0000 Subject: [opencms-dev] access rights messed ?! - help needed ! In-Reply-To: References: Message-ID: Hi, Something I saw in version 9 was whether the content (blog-elements, headers, etc.) do not have the same permisions as the folder you want to edit, inherited from the elements will be in the folder where it is located. Example .content <--Others permisions group-a <--Full permisions groupa <--Limited permisions Why? because the permisions are for all the things in the folder. Maybe this is your problem. Regards. El mié., 21 de sep. de 2016 a la(s) 05:38, escribió: > You need to update these as well, try updating atleast the user group. > > > > Regards > > Honey > > > > *From:* opencms-dev-bounces at opencms.org [mailto: > opencms-dev-bounces at opencms.org] *On Behalf Of *Thomas Schmidt > *Sent:* Wednesday, September 21, 2016 4:04 PM > > > *To:* The OpenCms mailing list > *Subject:* Re: [opencms-dev] access rights messed ?! - help needed ! > > > > Hello, > > thanks for the reply! > > > > The users who are supposed to be able to edit the content of the folder > which are organized in a dedicated group which has full access to the > folder (including responsible & inherit on subfolders & overwrite inherited > flags) are as well part of the generic „Users“ group. > > > > The project has as Manager Group "Administrators“ and as "User Group“ > the group „Users“ - where the users which are supposed to publish are part > of. > > > > I hope the users don’t need to be Managers of the project ? > > > > Thanks > > Kind regards > > ThomasS > > > > > > > > > > > > Am 21.09.2016 um 12:18 schrieb < > Honey.Bhandari at cognizant.com>: > > Check the project management and fix the owner / manager group for the > project. > > Regards > Honey > > -----Original Message----- > From: opencms-dev-bounces at opencms.org [ > mailto:opencms-dev-bounces at opencms.org ] > On Behalf Of Thomas Schmidt > Sent: Wednesday, September 21, 2016 3:46 PM > To: The OpenCms mailing list > Subject: Re: [opencms-dev] access rights messed ?! - help needed ! > > Hello, > > simplifying the question: > > in case i have all permissions set to „allowed“ (=e.g. +r+w+v+c+d ) for a > folder and for a group of users which explicitly allows direct publishing > (= +d) - and the users have roles "Category editor", „Editor", "Element > author“ - is that not enough to publish ? > > In my case users can’t publish from that folder even when having role & > permission as described in line above. Is there anything else what can > prevent publish rights ? > > Thanks > BR > ThomasS > > > > This e-mail and any files transmitted with it are for the sole use of the > intended recipient(s) and may contain confidential and privileged > information. If you are not the intended recipient(s), please reply to the > sender and destroy all copies of the original message. Any unauthorized > review, use, disclosure, dissemination, forwarding, printing or copying of > this email, and/or any action taken in reliance on the contents of this > e-mail is strictly prohibited and may be unlawful. Where permitted by > applicable law, this e-mail and other e-mail communications sent to and > from Cognizant e-mail addresses may be monitored. > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From agkhan at globalrescue.com Thu Sep 22 08:47:39 2016 From: agkhan at globalrescue.com (Asif G. Khan) Date: Thu, 22 Sep 2016 06:47:39 +0000 Subject: [opencms-dev] Schema mappings to Meta Tags Message-ID: Hello everyone, How can I map a schema field to meta tags like description and keywords. Tried following but didn't work: Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Honey.Bhandari at cognizant.com Thu Sep 22 08:51:01 2016 From: Honey.Bhandari at cognizant.com (Honey.Bhandari at cognizant.com) Date: Thu, 22 Sep 2016 06:51:01 +0000 Subject: [opencms-dev] Schema mappings to Meta Tags In-Reply-To: References: Message-ID: I don't think that that's possible. Reason - these meta tags belong to a page (container page) and you are trying to update a content which may or may not be related to page. Both are separate content items. Regards Honey From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Asif G. Khan Sent: Thursday, September 22, 2016 12:18 PM To: opencms-dev at opencms.org Subject: [opencms-dev] Schema mappings to Meta Tags Hello everyone, How can I map a schema field to meta tags like description and keywords. Tried following but didn't work: Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. -------------- next part -------------- An HTML attachment was scrubbed... URL: From agkhan at globalrescue.com Thu Sep 22 09:12:20 2016 From: agkhan at globalrescue.com (Asif G. Khan) Date: Thu, 22 Sep 2016 07:12:20 +0000 Subject: [opencms-dev] Schema mappings to Meta Tags In-Reply-To: References: Message-ID: <707f0398ee314621969dae7e3ea14b1e@EX1.GlobalRescue.local> Honey, But how is then urlName mappings working as URL is also not part of Schema or Content? You can find this "urlName" mapping in many examples. Thanks Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Honey.Bhandari at cognizant.com Sent: 22 September 2016 11:51 To: opencms-dev at opencms.org Subject: Re: [opencms-dev] Schema mappings to Meta Tags I don't think that that's possible. Reason - these meta tags belong to a page (container page) and you are trying to update a content which may or may not be related to page. Both are separate content items. Regards Honey From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Asif G. Khan Sent: Thursday, September 22, 2016 12:18 PM To: opencms-dev at opencms.org Subject: [opencms-dev] Schema mappings to Meta Tags Hello everyone, How can I map a schema field to meta tags like description and keywords. Tried following but didn't work: Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. -------------- next part -------------- An HTML attachment was scrubbed... URL: From m.emmerich at alkacon.com Thu Sep 22 09:21:31 2016 From: m.emmerich at alkacon.com (Michael Emmerich) Date: Thu, 22 Sep 2016 09:21:31 +0200 Subject: [opencms-dev] Schema mappings to Meta Tags In-Reply-To: <707f0398ee314621969dae7e3ea14b1e@EX1.GlobalRescue.local> References: <707f0398ee314621969dae7e3ea14b1e@EX1.GlobalRescue.local> Message-ID: <57E3867B.6030601@alkacon.com> Asif, URL-mapping and property mapping is a bit different. If you have a xml-content, lets say a news element and define a property mapping in its xsd, then the mapped value is written to a property of the content file, e.g. news_00001.xml. The URL mapping is used for the display of detail pages. So if you you have a list of news and want to have a detail view of it yo have to define the according detailpage for it. If you would not define the URL mapping for your news then OpenCms would create a link like /[pathtodetailpage]/[UUID_of_the_contentfile] Which is not nice. Therefore you can define the URL-mapping (normally you use the title for it) and OpenCms will create links like /[pathtodetailpage]/[Title_of_the_contentfile] Kind regards, Michael Am 22.09.2016 um 09:12 schrieb Asif G. Khan: > > Honey, > > But how is then urlName mappings working as URL is also not part of > Schema or Content? You can find this “urlName” mapping in many examples. > > Thanks > > *Asif G. Khan* > > Associate Architect > > Global Rescue LLC > > Ph: 92-51-2804125 > > agkhan at globalrescue.com > > In the event of an emergency, please contact the Global Rescue > Operations Center at 617-459-4200 > > *CONFIDENTIALITY & PRIVACY NOTICE*- The information transmitted in > this email is intended only for the person or entity to which it is > addressed and may contain confidential, proprietary and/or privileged > material. > > Any review, retransmission, dissemination or other use of or taking of > any action in reliance upon this information by persons or entities > other than the intended recipient is prohibited. > > If you received this email in error, please advise the sender and > permanently delete this message, all copies and any attachments from > your records immediately. > > *From:*opencms-dev-bounces at opencms.org > [mailto:opencms-dev-bounces at opencms.org] *On Behalf Of > *Honey.Bhandari at cognizant.com > *Sent:* 22 September 2016 11:51 > *To:* opencms-dev at opencms.org > *Subject:* Re: [opencms-dev] Schema mappings to Meta Tags > > I don’t think that that’s possible. Reason – these meta tags belong to > a page (container page) and you are trying to update a content which > may or may not be related to page. Both are separate content items. > > Regards > > Honey > > *From:*opencms-dev-bounces at opencms.org > > [mailto:opencms-dev-bounces at opencms.org] *On Behalf Of *Asif G. Khan > *Sent:* Thursday, September 22, 2016 12:18 PM > *To:* opencms-dev at opencms.org > *Subject:* [opencms-dev] Schema mappings to Meta Tags > > Hello everyone, > > How can I map a schema field to meta tags like description and keywords. > > Tried following but didn’t work: > > > > > > > > > > > > *Asif G. Khan* > > Associate Architect > > Global Rescue LLC > > Ph: 92-51-2804125 > > agkhan at globalrescue.com > > In the event of an emergency, please contact the Global Rescue > Operations Center at 617-459-4200 > > *CONFIDENTIALITY & PRIVACY NOTICE*- The information transmitted in > this email is intended only for the person or entity to which it is > addressed and may contain confidential, proprietary and/or privileged > material. > > Any review, retransmission, dissemination or other use of or taking of > any action in reliance upon this information by persons or entities > other than the intended recipient is prohibited. > > If you received this email in error, please advise the sender and > permanently delete this message, all copies and any attachments from > your records immediately. > > This e-mail and any files transmitted with it are for the sole use of > the intended recipient(s) and may contain confidential and privileged > information. If you are not the intended recipient(s), please reply to > the sender and destroy all copies of the original message. Any > unauthorized review, use, disclosure, dissemination, forwarding, > printing or copying of this email, and/or any action taken in reliance > on the contents of this e-mail is strictly prohibited and may be > unlawful. Where permitted by applicable law, this e-mail and other > e-mail communications sent to and from Cognizant e-mail addresses may > be monitored. > > > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > -- Visit OpenCms Days 2016 Conference and Expo September 26 to 27, 2016 in Cologne, Germany - http://www.opencms-days.org Alkacon Software GmbH - The OpenCms Experts Michael Emmerich Email: m.emmerich at alkacon.com http://www.alkacon.com http://www.opencms.org Geschäftsführer: Alexander Kandzior, Amtsgericht Köln, HRB 54613 -------------- next part -------------- An HTML attachment was scrubbed... URL: From agkhan at globalrescue.com Thu Sep 22 10:55:01 2016 From: agkhan at globalrescue.com (Asif G. Khan) Date: Thu, 22 Sep 2016 08:55:01 +0000 Subject: [opencms-dev] Schema mappings to Meta Tags In-Reply-To: <57E3867B.6030601@alkacon.com> References: <707f0398ee314621969dae7e3ea14b1e@EX1.GlobalRescue.local> <57E3867B.6030601@alkacon.com> Message-ID: Thank Michael for explanation, It means there is no way to do this? E.g. How to set Meta properties for Blogs as each Blog entry must have its own meta properties? This is in my opinion a basic and a must feature for Blog type content so how is it ignored by Alkacon team? Thanks Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Michael Emmerich Sent: 22 September 2016 12:22 To: opencms-dev at opencms.org Subject: Re: [opencms-dev] Schema mappings to Meta Tags Asif, URL-mapping and property mapping is a bit different. If you have a xml-content, lets say a news element and define a property mapping in its xsd, then the mapped value is written to a property of the content file, e.g. news_00001.xml. The URL mapping is used for the display of detail pages. So if you you have a list of news and want to have a detail view of it yo have to define the according detailpage for it. If you would not define the URL mapping for your news then OpenCms would create a link like /[pathtodetailpage]/[UUID_of_the_contentfile] Which is not nice. Therefore you can define the URL-mapping (normally you use the title for it) and OpenCms will create links like /[pathtodetailpage]/[Title_of_the_contentfile] Kind regards, Michael Am 22.09.2016 um 09:12 schrieb Asif G. Khan: Honey, But how is then urlName mappings working as URL is also not part of Schema or Content? You can find this "urlName" mapping in many examples. Thanks Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Honey.Bhandari at cognizant.com Sent: 22 September 2016 11:51 To: opencms-dev at opencms.org Subject: Re: [opencms-dev] Schema mappings to Meta Tags I don't think that that's possible. Reason - these meta tags belong to a page (container page) and you are trying to update a content which may or may not be related to page. Both are separate content items. Regards Honey From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Asif G. Khan Sent: Thursday, September 22, 2016 12:18 PM To: opencms-dev at opencms.org Subject: [opencms-dev] Schema mappings to Meta Tags Hello everyone, How can I map a schema field to meta tags like description and keywords. Tried following but didn't work: Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev -- Visit OpenCms Days 2016 Conference and Expo September 26 to 27, 2016 in Cologne, Germany - http://www.opencms-days.org Alkacon Software GmbH - The OpenCms Experts Michael Emmerich Email: m.emmerich at alkacon.com http://www.alkacon.com http://www.opencms.org Geschäftsführer: Alexander Kandzior, Amtsgericht Köln, HRB 54613 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Honey.Bhandari at cognizant.com Thu Sep 22 11:01:21 2016 From: Honey.Bhandari at cognizant.com (Honey.Bhandari at cognizant.com) Date: Thu, 22 Sep 2016 09:01:21 +0000 Subject: [opencms-dev] Schema mappings to Meta Tags In-Reply-To: References: <707f0398ee314621969dae7e3ea14b1e@EX1.GlobalRescue.local> <57E3867B.6030601@alkacon.com> Message-ID: It depends how u want to define and leverage the CMS. To solve your problem, use a separate page as the detail page. The page is build using a different template JSP and the detail formatter JSP for the blog must write the meta tag as well. Hope this helps... Regards Honey From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Asif G. Khan Sent: Thursday, September 22, 2016 2:25 PM To: The OpenCms mailing list Subject: Re: [opencms-dev] Schema mappings to Meta Tags Thank Michael for explanation, It means there is no way to do this? E.g. How to set Meta properties for Blogs as each Blog entry must have its own meta properties? This is in my opinion a basic and a must feature for Blog type content so how is it ignored by Alkacon team? Thanks Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Michael Emmerich Sent: 22 September 2016 12:22 To: opencms-dev at opencms.org Subject: Re: [opencms-dev] Schema mappings to Meta Tags Asif, URL-mapping and property mapping is a bit different. If you have a xml-content, lets say a news element and define a property mapping in its xsd, then the mapped value is written to a property of the content file, e.g. news_00001.xml. The URL mapping is used for the display of detail pages. So if you you have a list of news and want to have a detail view of it yo have to define the according detailpage for it. If you would not define the URL mapping for your news then OpenCms would create a link like /[pathtodetailpage]/[UUID_of_the_contentfile] Which is not nice. Therefore you can define the URL-mapping (normally you use the title for it) and OpenCms will create links like /[pathtodetailpage]/[Title_of_the_contentfile] Kind regards, Michael Am 22.09.2016 um 09:12 schrieb Asif G. Khan: Honey, But how is then urlName mappings working as URL is also not part of Schema or Content? You can find this "urlName" mapping in many examples. Thanks Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Honey.Bhandari at cognizant.com Sent: 22 September 2016 11:51 To: opencms-dev at opencms.org Subject: Re: [opencms-dev] Schema mappings to Meta Tags I don't think that that's possible. Reason - these meta tags belong to a page (container page) and you are trying to update a content which may or may not be related to page. Both are separate content items. Regards Honey From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Asif G. Khan Sent: Thursday, September 22, 2016 12:18 PM To: opencms-dev at opencms.org Subject: [opencms-dev] Schema mappings to Meta Tags Hello everyone, How can I map a schema field to meta tags like description and keywords. Tried following but didn't work: Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev -- Visit OpenCms Days 2016 Conference and Expo September 26 to 27, 2016 in Cologne, Germany - http://www.opencms-days.org Alkacon Software GmbH - The OpenCms Experts Michael Emmerich Email: m.emmerich at alkacon.com http://www.alkacon.com http://www.opencms.org Geschäftsführer: Alexander Kandzior, Amtsgericht Köln, HRB 54613 This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. -------------- next part -------------- An HTML attachment was scrubbed... URL: From lorenz.lammersdorf at kernbrand.ch Thu Sep 22 11:09:00 2016 From: lorenz.lammersdorf at kernbrand.ch (Lorenz Lammersdorf) Date: Thu, 22 Sep 2016 11:09:00 +0200 Subject: [opencms-dev] Schema mappings to Meta Tags In-Reply-To: References: <707f0398ee314621969dae7e3ea14b1e@EX1.GlobalRescue.local> <57E3867B.6030601@alkacon.com> Message-ID: <35be172e-2e92-05b5-66a2-b5571973ae95@kernbrand.ch> > It means there is no way to do this? E.g. How to set Meta properties > for > Blogs as each Blog entry must have its own meta properties? even though i don't know why (except for a title) those meta fields are important (and don't tell me about seo sh*t!), simply add matching fields to your xml scheme and use their content to fill the site's meta information. to get access to the information you may load the matching file from /.content/myResourceType/myResourceType-xxxx.xml using contentload. to find the matching file you might use a search (that's easy, but probably slow), but it should also be possible using CmsJspStandardContextBean (i've never tried that). Am 22.09.2016 um 10:55 schrieb Asif G. Khan: > Thank Michael for explanation, > > > > It means there is no way to do this? E.g. How to set Meta properties for > Blogs as each Blog entry must have its own meta properties? > > This is in my opinion a basic and a must feature for Blog type content > so how is it ignored by Alkacon team? > > > > Thanks > > > > *Asif G. Khan* > > Associate Architect > > Global Rescue LLC > > Ph: 92-51-2804125 > > agkhan at globalrescue.com > > > > In the event of an emergency, please contact the Global Rescue > Operations Center at 617-459-4200 > > > > *CONFIDENTIALITY & PRIVACY NOTICE*- The information transmitted in this > email is intended only for the person or entity to which it is addressed > and may contain confidential, proprietary and/or privileged material. > > Any review, retransmission, dissemination or other use of or taking of > any action in reliance upon this information by persons or entities > other than the intended recipient is prohibited. > > If you received this email in error, please advise the sender and > permanently delete this message, all copies and any attachments from > your records immediately. > > > > *From:*opencms-dev-bounces at opencms.org > [mailto:opencms-dev-bounces at opencms.org] *On Behalf Of *Michael Emmerich > *Sent:* 22 September 2016 12:22 > *To:* opencms-dev at opencms.org > *Subject:* Re: [opencms-dev] Schema mappings to Meta Tags > > > > Asif, > > URL-mapping and property mapping is a bit different. > > If you have a xml-content, lets say a news element and define a property > mapping in its xsd, then the mapped value is written to a property of > the content file, e.g. news_00001.xml. > > The URL mapping is used for the display of detail pages. So if you you > have a list of news and want to have a detail view of it yo have to > define the according detailpage for it. > If you would not define the URL mapping for your news then OpenCms would > create a link like /[pathtodetailpage]/[UUID_of_the_contentfile] > Which is not nice. Therefore you can define the URL-mapping (normally > you use the title for it) and OpenCms will create links like > /[pathtodetailpage]/[Title_of_the_contentfile] > > > Kind regards, > Michael > > Am 22.09.2016 um 09:12 schrieb Asif G. Khan: > > Honey, > > But how is then urlName mappings working as URL is also not part of > Schema or Content? You can find this “urlName” mapping in many examples. > > > > Thanks > > > > *Asif G. Khan* > > Associate Architect > > Global Rescue LLC > > Ph: 92-51-2804125 > > agkhan at globalrescue.com > > > > In the event of an emergency, please contact the Global Rescue > Operations Center at 617-459-4200 > > > > *CONFIDENTIALITY & PRIVACY NOTICE*- The information transmitted in > this email is intended only for the person or entity to which it is > addressed and may contain confidential, proprietary and/or > privileged material. > > Any review, retransmission, dissemination or other use of or taking > of any action in reliance upon this information by persons or > entities other than the intended recipient is prohibited. > > If you received this email in error, please advise the sender and > permanently delete this message, all copies and any attachments from > your records immediately. > > > > *From:*opencms-dev-bounces at opencms.org > [mailto:opencms-dev-bounces at opencms.org] > *On Behalf Of *Honey.Bhandari at cognizant.com > > *Sent:* 22 September 2016 11:51 > *To:* opencms-dev at opencms.org > *Subject:* Re: [opencms-dev] Schema mappings to Meta Tags > > > > I don’t think that that’s possible. Reason – these meta tags belong > to a page (container page) and you are trying to update a content > which may or may not be related to page. Both are separate content > items. > > > > Regards > > Honey > > > > *From:*opencms-dev-bounces at opencms.org > [mailto:opencms-dev-bounces at opencms.org] > *On Behalf Of *Asif G. Khan > *Sent:* Thursday, September 22, 2016 12:18 PM > *To:* opencms-dev at opencms.org > *Subject:* [opencms-dev] Schema mappings to Meta Tags > > > > Hello everyone, > > > > How can I map a schema field to meta tags like description and keywords. > > > > Tried following but didn’t work: > > > > > > > > mapto="property:Description" /> > > > > > > > > > > > > *Asif G. Khan* > > Associate Architect > > Global Rescue LLC > > Ph: 92-51-2804125 > > agkhan at globalrescue.com > > > > In the event of an emergency, please contact the Global Rescue > Operations Center at 617-459-4200 > > > > *CONFIDENTIALITY & PRIVACY NOTICE*- The information transmitted in > this email is intended only for the person or entity to which it is > addressed and may contain confidential, proprietary and/or > privileged material. > > Any review, retransmission, dissemination or other use of or taking > of any action in reliance upon this information by persons or > entities other than the intended recipient is prohibited. > > If you received this email in error, please advise the sender and > permanently delete this message, all copies and any attachments from > your records immediately. > > > > This e-mail and any files transmitted with it are for the sole use > of the intended recipient(s) and may contain confidential and > privileged information. If you are not the intended recipient(s), > please reply to the sender and destroy all copies of the original > message. Any unauthorized review, use, disclosure, dissemination, > forwarding, printing or copying of this email, and/or any action > taken in reliance on the contents of this e-mail is strictly > prohibited and may be unlawful. Where permitted by applicable law, > this e-mail and other e-mail communications sent to and from > Cognizant e-mail addresses may be monitored. > > > > > _______________________________________________ > > This mail is sent to you from the opencms-dev mailing list > > To change your list options, or to unsubscribe from the list, please visit > > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > > > > > > > -- > > Visit OpenCms Days 2016 Conference and Expo > > September 26 to 27, 2016 in Cologne, Germany - http://www.opencms-days.org > > > > Alkacon Software GmbH - The OpenCms Experts > > > > Michael Emmerich > > > > Email: m.emmerich at alkacon.com > > > > http://www.alkacon.com > > http://www.opencms.org > > > > > > Geschäftsführer: Alexander Kandzior, Amtsgericht Köln, HRB 54613 > > > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > From agkhan at globalrescue.com Thu Sep 22 11:24:58 2016 From: agkhan at globalrescue.com (Asif G. Khan) Date: Thu, 22 Sep 2016 09:24:58 +0000 Subject: [opencms-dev] Schema mappings to Meta Tags In-Reply-To: References: <707f0398ee314621969dae7e3ea14b1e@EX1.GlobalRescue.local> <57E3867B.6030601@alkacon.com> Message-ID: Yes Honey< I have same solution in mind as a final one but I want to do it some proper way :) Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Honey.Bhandari at cognizant.com Sent: 22 September 2016 14:01 To: opencms-dev at opencms.org Subject: Re: [opencms-dev] Schema mappings to Meta Tags It depends how u want to define and leverage the CMS. To solve your problem, use a separate page as the detail page. The page is build using a different template JSP and the detail formatter JSP for the blog must write the meta tag as well. Hope this helps... Regards Honey From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Asif G. Khan Sent: Thursday, September 22, 2016 2:25 PM To: The OpenCms mailing list > Subject: Re: [opencms-dev] Schema mappings to Meta Tags Thank Michael for explanation, It means there is no way to do this? E.g. How to set Meta properties for Blogs as each Blog entry must have its own meta properties? This is in my opinion a basic and a must feature for Blog type content so how is it ignored by Alkacon team? Thanks Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Michael Emmerich Sent: 22 September 2016 12:22 To: opencms-dev at opencms.org Subject: Re: [opencms-dev] Schema mappings to Meta Tags Asif, URL-mapping and property mapping is a bit different. If you have a xml-content, lets say a news element and define a property mapping in its xsd, then the mapped value is written to a property of the content file, e.g. news_00001.xml. The URL mapping is used for the display of detail pages. So if you you have a list of news and want to have a detail view of it yo have to define the according detailpage for it. If you would not define the URL mapping for your news then OpenCms would create a link like /[pathtodetailpage]/[UUID_of_the_contentfile] Which is not nice. Therefore you can define the URL-mapping (normally you use the title for it) and OpenCms will create links like /[pathtodetailpage]/[Title_of_the_contentfile] Kind regards, Michael Am 22.09.2016 um 09:12 schrieb Asif G. Khan: Honey, But how is then urlName mappings working as URL is also not part of Schema or Content? You can find this "urlName" mapping in many examples. Thanks Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Honey.Bhandari at cognizant.com Sent: 22 September 2016 11:51 To: opencms-dev at opencms.org Subject: Re: [opencms-dev] Schema mappings to Meta Tags I don't think that that's possible. Reason - these meta tags belong to a page (container page) and you are trying to update a content which may or may not be related to page. Both are separate content items. Regards Honey From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Asif G. Khan Sent: Thursday, September 22, 2016 12:18 PM To: opencms-dev at opencms.org Subject: [opencms-dev] Schema mappings to Meta Tags Hello everyone, How can I map a schema field to meta tags like description and keywords. Tried following but didn't work: Asif G. Khan Associate Architect Global Rescue LLC Ph: 92-51-2804125 agkhan at globalrescue.com In the event of an emergency, please contact the Global Rescue Operations Center at 617-459-4200 CONFIDENTIALITY & PRIVACY NOTICE - The information transmitted in this email is intended only for the person or entity to which it is addressed and may contain confidential, proprietary and/or privileged material. Any review, retransmission, dissemination or other use of or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you received this email in error, please advise the sender and permanently delete this message, all copies and any attachments from your records immediately. This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev -- Visit OpenCms Days 2016 Conference and Expo September 26 to 27, 2016 in Cologne, Germany - http://www.opencms-days.org Alkacon Software GmbH - The OpenCms Experts Michael Emmerich Email: m.emmerich at alkacon.com http://www.alkacon.com http://www.opencms.org Geschäftsführer: Alexander Kandzior, Amtsgericht Köln, HRB 54613 This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. -------------- next part -------------- An HTML attachment was scrubbed... URL: From enrip_86 at hotmail.com Thu Sep 22 13:04:24 2016 From: enrip_86 at hotmail.com (=?iso-8859-1?B?ZW5yaXF1ZSBlc3Bh8WEgYmxhbmNv?=) Date: Thu, 22 Sep 2016 11:04:24 +0000 Subject: [opencms-dev] Problems to translate blog and seach resources of OpenCMS 10.0.1 Message-ID: Hello, I'm trying to translate blog and seach resources of OpenCMS 10.0.1, but when I change the tags file "/system/modules/org.opencms.apollo.template.formatters/i18n/org.opencms.apollo.template.formatters.list" and restarting the Tomcat no changes are seen. Thanks to all. -------------- next part -------------- An HTML attachment was scrubbed... URL: From athiecampollo at gmail.com Thu Sep 22 17:48:38 2016 From: athiecampollo at gmail.com (Jose Fermin Athie Campollo) Date: Thu, 22 Sep 2016 15:48:38 +0000 Subject: [opencms-dev] Schema mappings to Meta Tags In-Reply-To: References: <707f0398ee314621969dae7e3ea14b1e@EX1.GlobalRescue.local> <57E3867B.6030601@alkacon.com> Message-ID: Hi everyone, If i understood correctly you want to map your blog-element to the container-page and yes you can do this. But just one element will be map to the page. The simple way to map title to the container-page is set the property "element" need to be the same as Then in your template have to set "> if you want a custom one change search for the file or set it to element.uri Or you can use EL to get the property

The "NavText" property value of the current URI (file ${cms.vfs.resource[uri].name}) is "${cms.vfs.property[uri]['NavText']}".

${cms:vfs(pageContext).xml[off.value.element].value['title']} In version 9 everything is easy. Check the documentation and the javadoc everything is in there. http://documentation.opencms.org/opencms-documentation/typical-tasks/writing-jsps/interesting-el-expressions/index.html Regards El jue., 22 de sep. de 2016 a la(s) 04:25, Asif G. Khan < agkhan at globalrescue.com> escribió: > Yes Honey< I have same solution in mind as a final one but I want to do it > some proper way J > > > > *Asif G. Khan* > > Associate Architect > > Global Rescue LLC > > Ph: 92-51-2804125 > > agkhan at globalrescue.com > > > > In the event of an emergency, please contact the Global Rescue Operations > Center at 617-459-4200 > > > > *CONFIDENTIALITY & PRIVACY NOTICE* - The information transmitted in this > email is intended only for the person or entity to which it is addressed > and may contain confidential, proprietary and/or privileged material. > > Any review, retransmission, dissemination or other use of or taking of any > action in reliance upon this information by persons or entities other than > the intended recipient is prohibited. > > If you received this email in error, please advise the sender and > permanently delete this message, all copies and any attachments from your > records immediately. > > > > *From:* opencms-dev-bounces at opencms.org [mailto: > opencms-dev-bounces at opencms.org] *On Behalf Of * > Honey.Bhandari at cognizant.com > *Sent:* 22 September 2016 14:01 > > > *To:* opencms-dev at opencms.org > *Subject:* Re: [opencms-dev] Schema mappings to Meta Tags > > > > It depends how u want to define and leverage the CMS. To solve your > problem, use a separate page as the detail page. The page is build using a > different template JSP and the detail formatter JSP for the blog must write > the meta tag as well. > > > > Hope this helps… > > > > Regards > > Honey > > > > *From:* opencms-dev-bounces at opencms.org [ > mailto:opencms-dev-bounces at opencms.org ] *On > Behalf Of *Asif G. Khan > *Sent:* Thursday, September 22, 2016 2:25 PM > *To:* The OpenCms mailing list > *Subject:* Re: [opencms-dev] Schema mappings to Meta Tags > > > > Thank Michael for explanation, > > > > It means there is no way to do this? E.g. How to set Meta properties for > Blogs as each Blog entry must have its own meta properties? > > This is in my opinion a basic and a must feature for Blog type content so > how is it ignored by Alkacon team? > > > > Thanks > > > > *Asif G. Khan* > > Associate Architect > > Global Rescue LLC > > Ph: 92-51-2804125 > > agkhan at globalrescue.com > > > > In the event of an emergency, please contact the Global Rescue Operations > Center at 617-459-4200 > > > > *CONFIDENTIALITY & PRIVACY NOTICE* - The information transmitted in this > email is intended only for the person or entity to which it is addressed > and may contain confidential, proprietary and/or privileged material. > > Any review, retransmission, dissemination or other use of or taking of any > action in reliance upon this information by persons or entities other than > the intended recipient is prohibited. > > If you received this email in error, please advise the sender and > permanently delete this message, all copies and any attachments from your > records immediately. > > > > *From:* opencms-dev-bounces at opencms.org [ > mailto:opencms-dev-bounces at opencms.org ] *On > Behalf Of *Michael Emmerich > *Sent:* 22 September 2016 12:22 > *To:* opencms-dev at opencms.org > *Subject:* Re: [opencms-dev] Schema mappings to Meta Tags > > > > Asif, > > URL-mapping and property mapping is a bit different. > > If you have a xml-content, lets say a news element and define a property > mapping in its xsd, then the mapped value is written to a property of the > content file, e.g. news_00001.xml. > > The URL mapping is used for the display of detail pages. So if you you > have a list of news and want to have a detail view of it yo have to define > the according detailpage for it. > If you would not define the URL mapping for your news then OpenCms would > create a link like /[pathtodetailpage]/[UUID_of_the_contentfile] > Which is not nice. Therefore you can define the URL-mapping (normally you > use the title for it) and OpenCms will create links like > /[pathtodetailpage]/[Title_of_the_contentfile] > > > Kind regards, > Michael > > Am 22.09.2016 um 09:12 schrieb Asif G. Khan: > > Honey, > > But how is then urlName mappings working as URL is also not part of Schema > or Content? You can find this “urlName” mapping in many examples. > > > > Thanks > > > > *Asif G. Khan* > > Associate Architect > > Global Rescue LLC > > Ph: 92-51-2804125 > > agkhan at globalrescue.com > > > > In the event of an emergency, please contact the Global Rescue Operations > Center at 617-459-4200 > > > > *CONFIDENTIALITY & PRIVACY NOTICE* - The information transmitted in this > email is intended only for the person or entity to which it is addressed > and may contain confidential, proprietary and/or privileged material. > > Any review, retransmission, dissemination or other use of or taking of any > action in reliance upon this information by persons or entities other than > the intended recipient is prohibited. > > If you received this email in error, please advise the sender and > permanently delete this message, all copies and any attachments from your > records immediately. > > > > *From:* opencms-dev-bounces at opencms.org [ > mailto:opencms-dev-bounces at opencms.org ] *On > Behalf Of *Honey.Bhandari at cognizant.com > *Sent:* 22 September 2016 11:51 > *To:* opencms-dev at opencms.org > *Subject:* Re: [opencms-dev] Schema mappings to Meta Tags > > > > I don’t think that that’s possible. Reason – these meta tags belong to a > page (container page) and you are trying to update a content which may or > may not be related to page. Both are separate content items. > > > > Regards > > Honey > > > > *From:* opencms-dev-bounces at opencms.org [ > mailto:opencms-dev-bounces at opencms.org ] *On > Behalf Of *Asif G. Khan > *Sent:* Thursday, September 22, 2016 12:18 PM > *To:* opencms-dev at opencms.org > *Subject:* [opencms-dev] Schema mappings to Meta Tags > > > > Hello everyone, > > > > How can I map a schema field to meta tags like description and keywords. > > > > Tried following but didn’t work: > > > > > > > > > > > > > > > > > > > > *Asif G. Khan* > > Associate Architect > > Global Rescue LLC > > Ph: 92-51-2804125 > > agkhan at globalrescue.com > > > > In the event of an emergency, please contact the Global Rescue Operations > Center at 617-459-4200 > > > > *CONFIDENTIALITY & PRIVACY NOTICE* - The information transmitted in this > email is intended only for the person or entity to which it is addressed > and may contain confidential, proprietary and/or privileged material. > > Any review, retransmission, dissemination or other use of or taking of any > action in reliance upon this information by persons or entities other than > the intended recipient is prohibited. > > If you received this email in error, please advise the sender and > permanently delete this message, all copies and any attachments from your > records immediately. > > > > This e-mail and any files transmitted with it are for the sole use of the > intended recipient(s) and may contain confidential and privileged > information. If you are not the intended recipient(s), please reply to the > sender and destroy all copies of the original message. Any unauthorized > review, use, disclosure, dissemination, forwarding, printing or copying of > this email, and/or any action taken in reliance on the contents of this > e-mail is strictly prohibited and may be unlawful. Where permitted by > applicable law, this e-mail and other e-mail communications sent to and > from Cognizant e-mail addresses may be monitored. > > > > > _______________________________________________ > > This mail is sent to you from the opencms-dev mailing list > > To change your list options, or to unsubscribe from the list, please visit > > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > > > > > > > -- > > Visit OpenCms Days 2016 Conference and Expo > > September 26 to 27, 2016 in Cologne, Germany - http://www.opencms-days.org > > > > Alkacon Software GmbH - The OpenCms Experts > > > > Michael Emmerich > > > > Email: m.emmerich at alkacon.com > > http://www.alkacon.com > > http://www.opencms.org > > > > > > Geschäftsführer: Alexander Kandzior, Amtsgericht Köln, HRB 54613 > > This e-mail and any files transmitted with it are for the sole use of the > intended recipient(s) and may contain confidential and privileged > information. If you are not the intended recipient(s), please reply to the > sender and destroy all copies of the original message. Any unauthorized > review, use, disclosure, dissemination, forwarding, printing or copying of > this email, and/or any action taken in reliance on the contents of this > e-mail is strictly prohibited and may be unlawful. Where permitted by > applicable law, this e-mail and other e-mail communications sent to and > from Cognizant e-mail addresses may be monitored. > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From t.schmidt at md-network.de Fri Sep 23 10:57:05 2016 From: t.schmidt at md-network.de (Thomas Schmidt) Date: Fri, 23 Sep 2016 10:57:05 +0200 Subject: [opencms-dev] access rights messed ?! - help needed ! In-Reply-To: References: Message-ID: <13BFADEE-37E6-4C81-89DA-D316CC3B8FD9@md-network.de> Hello, looks like i found the issue. The users are in 2 groups where one had the explicit prohibition to publish - the other was allowing it explicitly. The prohibition to publish wins - which is logically ok. Looks like i need to rethink grouping and permissions scheme. Thanks ! BR ThomasS > Am 21.09.2016 um 16:44 schrieb Jose Fermin Athie Campollo : > > Hi, > > Something I saw in version 9 was whether the content (blog-elements, headers, etc.) do not have the same permisions as the folder you want to edit, inherited from the elements will be in the folder where it is located. > > Example > .content <--Others permisions > group-a <--Full permisions > groupa <--Limited permisions > > Why? because the permisions are for all the things in the folder. Maybe this is your problem. > > Regards. > > > El mié., 21 de sep. de 2016 a la(s) 05:38, escribió: > You need to update these as well, try updating atleast the user group. > > > > Regards > > Honey > > From gfrancis2 at cancercare.mb.ca Fri Sep 23 20:31:46 2016 From: gfrancis2 at cancercare.mb.ca (Gratian Francis) Date: Fri, 23 Sep 2016 18:31:46 +0000 Subject: [opencms-dev] no space left on device error - when trying to access launchpad tools In-Reply-To: References: Message-ID: I know there is enough disk space since when I first encountered the error was while uploading a batch of images to an image gallery, after that I deleted the images from vfs to free up space then shortly afterwards allocated more space to the server’s partition, yet the error still came up afterwards when trying to access tools in the launch pad menu. Update: It seems to be working now, maybe latency between the space being allocated and the space becoming available to tomcat? Cheers, Gratian Francis Junior Programmer Analyst CancerCare Manitoba CC40-825 Sherbrook Street Winnipeg, MB R3A 1M5 Ph: 204-784-6403 Cell: 204-794-1230 gfrancis2 at cancercare.mb.ca [CCMB-master-logo-cmyk] Planned Absences: None for now, maybe next year. From: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] On Behalf Of Alberto Gallardo Sent: Tuesday, September 20, 2016 7:03 AM To: The OpenCms mailing list Subject: Re: [opencms-dev] no space left on device error - when trying to access launchpad tools as far as I know the server has more than enough space. How are you so sure? If I'm not mistaken, this output corresponds to a build_10_0_0 version. In this case, the error isn't 'seasoned' and is quite unambiguous. Tomcat cannot write a jsp into its 'work' directory. An error occurred.No space left on device java.io.IOException: No space left on device at java.io.FileOutputStream.writeBytes(Native Method) at java.io.FileOutputStream.write(FileOutputStream.java:313) at org.opencms.loader.CmsJspLoader.updateJsp(CmsJspLoader.java:864) [...] This email and/or any documents in this transmission is intended for the addressee(s) only and may contain legally privileged or confidential information. Any unauthorized use, disclosure, distribution, copying or dissemination is strictly prohibited. If you receive this transmission in error, please notify the sender immediately and return the original. Ce courriel et tout document dans cette transmission est destiné à la personne ou aux personnes à qui il est adressé. Il peut contenir des informations privilégiées ou confidentielles. Toute utilisation, divulgation, distribution, copie, ou diffusion non autorisée est strictement défendue. Si vous n'êtes pas le destinataire de ce message, veuillez en informer l'expéditeur immédiatement et lui remettre l'original. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 3835 bytes Desc: image001.jpg URL: From alex at opencms.org Wed Sep 28 18:24:05 2016 From: alex at opencms.org (Alex Kandzior) Date: Wed, 28 Sep 2016 18:24:05 +0200 Subject: [opencms-dev] OpenCms 10.5 Beta now available for download Message-ID: <9E606133-6B77-44C1-9CC4-34D12407526F@opencms.org> Hi all, OpenCms Days 2016 is a wrap and OpenCms 10.5 Beta is available for download now. New features in 10.5 include a copy (container) page option, as well as greatly improved tools to create localized multi-language websites. Full information in the release notes: http://www.opencms.org/en/news/160926-opencms-105-beta.html Kind regards, Alex. ------------------- Alexander Kandzior Alkacon Software GmbH - The OpenCms Experts http://www.alkacon.com - http://www.opencms.org From fhsubscriptions at componio.net Thu Sep 29 00:27:27 2016 From: fhsubscriptions at componio.net (fhsubscriptions at componio.net) Date: Thu, 29 Sep 2016 00:27:27 +0200 Subject: [opencms-dev] Log-In a user programmatically Message-ID: <5d49d42d-135f-e5f7-a9a5-d1a8a360b1eb@componio.net> Hi List, how do you log-in an user programmatically without knowing his password? Scenario: 1.) Submit an OAMP-Form as guest user 2.) ActionClass is triggered 3.) ActionClass logs in a predefined user and updates/creates the session for the form submitting guest user (guest user is now predefined user) 4.) OAMP-Form redirects to a protected area where the just logged-in user has access to We have the CmsObject for the Admin user, the current HTTPServletRequest and of course the current CmsObject for the submitting guest user. For our SSO module we have written our own authorization handler and generate an individual context. However this approach does not work for the scenario above. Any hints are welcome. Many thanks, \Fabian From Honey.Bhandari at cognizant.com Thu Sep 29 08:29:58 2016 From: Honey.Bhandari at cognizant.com (Honey.Bhandari at cognizant.com) Date: Thu, 29 Sep 2016 06:29:58 +0000 Subject: [opencms-dev] OpenCms on Cloud - Autoscaling Message-ID: Hi We are using the OCEE clustering module on AWS. At present we have 2 nodes (1 primary and 1 slave). Couple of questions - * Is the same license key valid for multiple slave nodes? * How can I have the system auto-scale on a cloud? Please share your thoughts. Regards Honey This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ak at cloudssky.com Thu Sep 29 12:40:26 2016 From: ak at cloudssky.com (Arash Kaffamanesh) Date: Thu, 29 Sep 2016 12:40:26 +0200 Subject: [opencms-dev] OpenCms on Cloud - Autoscaling In-Reply-To: References: Message-ID: Hi Honey, Regarding your 2nd question: >> How can I have the system auto-scale on a cloud? You'll find the slides from OpenCms Days 2013 which provides some information about how we do auto-scaling with our custom OpenCms OCCX (OpenCms Cloud eXtentions) implementation with multi Workplace Support, etc. here: http://de.slideshare.net/AlkaconOpenCms/opencms-days- 2013-opencms-cloud-extensions You can find some more information here: https://cloudssky.com/en/blog/OpenCms-Cluster-Docker-Image-Is-On-Docker-Hub-Registry/ And the Docker Cluster Image is available on Docker Hub: https://hub.docker.com/r/cloudssky/opencms-stack-cluster/ Regarding your first question: >> Is the same license key valid for multiple slave nodes? No, I don't think that something has changed since 2013 with the licensing strategy (that was one reason near to multi workplace support, why we made OpenCms cloud ready :-)) Kind Regards, Arash On Thu, Sep 29, 2016 at 8:29 AM, wrote: > Hi > > > > We are using the OCEE clustering module on AWS. At present we have 2 nodes > (1 primary and 1 slave). Couple of questions – > > · Is the same license key valid for multiple slave nodes? > > · How can I have the system auto-scale on a cloud? > > > > Please share your thoughts. > > > > Regards > > Honey > This e-mail and any files transmitted with it are for the sole use of the > intended recipient(s) and may contain confidential and privileged > information. If you are not the intended recipient(s), please reply to the > sender and destroy all copies of the original message. Any unauthorized > review, use, disclosure, dissemination, forwarding, printing or copying of > this email, and/or any action taken in reliance on the contents of this > e-mail is strictly prohibited and may be unlawful. Where permitted by > applicable law, this e-mail and other e-mail communications sent to and > from Cognizant e-mail addresses may be monitored. > > _______________________________________________ > This mail is sent to you from the opencms-dev mailing list > To change your list options, or to unsubscribe from the list, please visit > http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Honey.Bhandari at cognizant.com Thu Sep 29 14:15:20 2016 From: Honey.Bhandari at cognizant.com (Honey.Bhandari at cognizant.com) Date: Thu, 29 Sep 2016 12:15:20 +0000 Subject: [opencms-dev] OpenCms on Cloud - Autoscaling In-Reply-To: References: Message-ID: Thanks Arash! 3 more questions – · Is OCCX ready to be used on AWS with v 10.0.1 and what is the costing for it? · If using OCCX, do I still need to purchase OCEE cluster license? · Is it possible to do autoscaling with docker images when I know that each new instance needs a new license key? If so how? Regards Honey From: Arash Kaffamanesh [mailto:ak at cloudssky.com] Sent: Thursday, September 29, 2016 4:10 PM To: The OpenCms mailing list Cc: Bhandari, Honey (Cognizant) Subject: Re: [opencms-dev] OpenCms on Cloud - Autoscaling Hi Honey, Regarding your 2nd question: >> How can I have the system auto-scale on a cloud? You'll find the slides from OpenCms Days 2013 which provides some information about how we do auto-scaling with our custom OpenCms OCCX (OpenCms Cloud eXtentions) implementation with multi Workplace Support, etc. here: http://de.slideshare.net/AlkaconOpenCms/opencms-days-2013-opencms-cloud-extensions You can find some more information here: https://cloudssky.com/en/blog/OpenCms-Cluster-Docker-Image-Is-On-Docker-Hub-Registry/ And the Docker Cluster Image is available on Docker Hub: https://hub.docker.com/r/cloudssky/opencms-stack-cluster/ Regarding your first question: >> Is the same license key valid for multiple slave nodes? No, I don't think that something has changed since 2013 with the licensing strategy (that was one reason near to multi workplace support, why we made OpenCms cloud ready :-)) Kind Regards, Arash On Thu, Sep 29, 2016 at 8:29 AM, > wrote: Hi We are using the OCEE clustering module on AWS. At present we have 2 nodes (1 primary and 1 slave). Couple of questions – • Is the same license key valid for multiple slave nodes? • How can I have the system auto-scale on a cloud? Please share your thoughts. Regards Honey This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. _______________________________________________ This mail is sent to you from the opencms-dev mailing list To change your list options, or to unsubscribe from the list, please visit http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient(s), please reply to the sender and destroy all copies of the original message. Any unauthorized review, use, disclosure, dissemination, forwarding, printing or copying of this email, and/or any action taken in reliance on the contents of this e-mail is strictly prohibited and may be unlawful. Where permitted by applicable law, this e-mail and other e-mail communications sent to and from Cognizant e-mail addresses may be monitored. -------------- next part -------------- An HTML attachment was scrubbed... URL: From frantuma at gmail.com Thu Sep 29 22:43:41 2016 From: frantuma at gmail.com (frantuma) Date: Thu, 29 Sep 2016 22:43:41 +0200 Subject: [opencms-dev] OpenCms 10.5 Beta now available for download References: <9E606133-6B77-44C1-9CC4-34D12407526F@opencms.org> Message-ID: An HTML attachment was scrubbed... URL: