*All,*
Where is */properties-form-runner.xml/* in the new CE version? I don't see it under the conf folder. The below setting I change in some cases to access another exit db instance other than the embedded one. Thanks, Randy <properties xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:oxf="http://www.orbeon.com/oxf/processors" xmlns:xi="http://www.w3.org/2001/XInclude"> <!-- Form Runner properties --> <property as="xs:anyURI" name="oxf.fr.persistence.app.uri.*.*.*" value="/fr/service/exist"/> <!-- <property as="xs:anyURI" name="oxf.fr.persistence.service.exist.uri" value="/exist/rest/db"/>--> <property as="xs:anyURI" name="oxf.fr.persistence.service.exist.uri" value="http://localhost:8080/exist/rest/db"/> <property as="xs:anyURI " name="oxf.fr.persistence.service.oracle.datasource" value="oracle"/> <property as="xs:anyURI" name="oxf.fr.appserver.uri" value=""/> <property as="xs:string" name="oxf.fr.default-language.*.*" value="en"/> <property as="xs:anyURI" name="oxf.fr.default-logo.uri.*.*" value="oxf:/apps/fr/style/orbeon-logo-trimmed-transparent-30.png"/> <property as="xs:string" name="oxf.fr.css.uri.*.*" value="/ops/yui/reset-fonts-grids/reset-fonts-grids.css /apps/fr/style/form-runner-base.css /apps/fr/style/form-runner-orbeon.css"/> <property as="xs:string" name="oxf.fr.css.uri.orbeon.*" value="/ops/yui/reset-fonts-grids/reset-fonts-grids.css /apps/fr/style/form-runner-base.css /apps/fr/style/form-runner-orbeon.css"/> <property as="xs:string" name="oxf.fr.authentication.method" value="header"/> <!-- "container", "header", or empty --> <property as="xs:string" name="oxf.fr.authentication.header.username" value="My-Username-Header"/> <property as="xs:string" name="oxf.fr.authentication.header.roles" value="My-Roles-Header"/> <property as="xs:string" name="oxf.fr.authentication.header.roles.property-name" value=""/> <property as="xs:string" name="oxf.fr.authentication.container.roles" value="orbeon admin user"/> -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Administrator
|
Hi Randy,
We moved those files inside our jar files, to avoid you being tempted to change those files directly ;). Instead of changing properties-form-runner.xml, you can override properties defined there in your properties-local.xml. That file only contains your properties, which make it easier for you to upgrade to newer version of Orbeon Forms. Also see "Overriding properties" on: http://wiki.orbeon.com/forms/doc/developer-guide/configuration-properties Alex On Tue, May 18, 2010 at 11:24 AM, Randy Smith <[hidden email]> wrote: > *All,* > > Where is */properties-form-runner.xml/* in the new CE version? I don't see > it > under the conf folder. The below setting I change in some cases to access > another exit db instance > other than the embedded one. > > Thanks, > > Randy > > > <properties xmlns:xs="http://www.w3.org/2001/XMLSchema" > xmlns:oxf="http://www.orbeon.com/oxf/processors" > xmlns:xi="http://www.w3.org/2001/XInclude"> > > <!-- Form Runner properties --> > <property as="xs:anyURI" name="oxf.fr.persistence.app.uri.*.*.*" > value="/fr/service/exist"/> > > <!-- <property as="xs:anyURI" name="oxf.fr.persistence.service.exist.uri" > value="/exist/rest/db"/>--> > <property as="xs:anyURI" name="oxf.fr.persistence.service.exist.uri" > value="http://localhost:8080/exist/rest/db"/> > <property as="xs:anyURI " > name="oxf.fr.persistence.service.oracle.datasource" > value="oracle"/> > > <property as="xs:anyURI" name="oxf.fr.appserver.uri" > value=""/> > <property as="xs:string" name="oxf.fr.default-language.*.*" > value="en"/> > <property as="xs:anyURI" name="oxf.fr.default-logo.uri.*.*" > > value="oxf:/apps/fr/style/orbeon-logo-trimmed-transparent-30.png"/> > <property as="xs:string" name="oxf.fr.css.uri.*.*" > value="/ops/yui/reset-fonts-grids/reset-fonts-grids.css > > /apps/fr/style/form-runner-base.css > > /apps/fr/style/form-runner-orbeon.css"/> > <property as="xs:string" name="oxf.fr.css.uri.orbeon.*" > value="/ops/yui/reset-fonts-grids/reset-fonts-grids.css > > /apps/fr/style/form-runner-base.css > > /apps/fr/style/form-runner-orbeon.css"/> > <property as="xs:string" name="oxf.fr.authentication.method" > value="header"/> <!-- "container", "header", or empty --> > <property as="xs:string" name="oxf.fr.authentication.header.username" > value="My-Username-Header"/> > <property as="xs:string" name="oxf.fr.authentication.header.roles" > value="My-Roles-Header"/> > <property as="xs:string" > name="oxf.fr.authentication.header.roles.property-name" > value=""/> > <property as="xs:string" name="oxf.fr.authentication.container.roles" > value="orbeon admin user"/> > > > > -- > You receive this message as a subscriber of the [hidden email] mailing > list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > OW2 mailing lists service home page: http://www.ow2.org/wws > > -- Orbeon Forms - Web forms, open-source, for the Enterprise - http://www.orbeon.com/ My Twitter: http://twitter.com/avernet -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws
--
Follow Orbeon on Twitter: @orbeon Follow me on Twitter: @avernet |
Hello Alex,
I am trying to implement <xforms:help> for the version of orbeon i.e dev-post-3.7.1.200909302200 that we have. It seems that the <xforms:help> popup works fine for single node binding but it does not work for the nodeset binding [<xforms:repeat>]. Could you please let me know if I am implementing it wrong or what would be the work around for the same. I have attached two files page-flow.xml and view.xhtml, to reproduce the error, along with this email. Thank you. Sincerely, Ashay -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
In reply to this post by Alessandro Vernet
Thanks Alex,
You were doing me good and I didn't know it. :-) Works great! Randy Alessandro Vernet wrote: > Hi Randy, > > We moved those files inside our jar files, to avoid you being tempted > to change those files directly ;). Instead of changing > properties-form-runner.xml, you can override properties defined there > in your properties-local.xml. That file only contains your properties, > which make it easier for you to upgrade to newer version of Orbeon > Forms. Also see "Overriding properties" on: > > http://wiki.orbeon.com/forms/doc/developer-guide/configuration-properties > > Alex > > On Tue, May 18, 2010 at 11:24 AM, Randy Smith <[hidden email]> wrote: > >> *All,* >> >> Where is */properties-form-runner.xml/* in the new CE version? I don't see >> it >> under the conf folder. The below setting I change in some cases to access >> another exit db instance >> other than the embedded one. >> >> Thanks, >> >> Randy >> >> >> <properties xmlns:xs="http://www.w3.org/2001/XMLSchema" >> xmlns:oxf="http://www.orbeon.com/oxf/processors" >> xmlns:xi="http://www.w3.org/2001/XInclude"> >> >> <!-- Form Runner properties --> >> <property as="xs:anyURI" name="oxf.fr.persistence.app.uri.*.*.*" >> value="/fr/service/exist"/> >> >> <!-- <property as="xs:anyURI" name="oxf.fr.persistence.service.exist.uri" >> value="/exist/rest/db"/>--> >> <property as="xs:anyURI" name="oxf.fr.persistence.service.exist.uri" >> value="http://localhost:8080/exist/rest/db"/> >> <property as="xs:anyURI " >> name="oxf.fr.persistence.service.oracle.datasource" >> value="oracle"/> >> >> <property as="xs:anyURI" name="oxf.fr.appserver.uri" >> value=""/> >> <property as="xs:string" name="oxf.fr.default-language.*.*" >> value="en"/> >> <property as="xs:anyURI" name="oxf.fr.default-logo.uri.*.*" >> >> value="oxf:/apps/fr/style/orbeon-logo-trimmed-transparent-30.png"/> >> <property as="xs:string" name="oxf.fr.css.uri.*.*" >> value="/ops/yui/reset-fonts-grids/reset-fonts-grids.css >> >> /apps/fr/style/form-runner-base.css >> >> /apps/fr/style/form-runner-orbeon.css"/> >> <property as="xs:string" name="oxf.fr.css.uri.orbeon.*" >> value="/ops/yui/reset-fonts-grids/reset-fonts-grids.css >> >> /apps/fr/style/form-runner-base.css >> >> /apps/fr/style/form-runner-orbeon.css"/> >> <property as="xs:string" name="oxf.fr.authentication.method" >> value="header"/> <!-- "container", "header", or empty --> >> <property as="xs:string" name="oxf.fr.authentication.header.username" >> value="My-Username-Header"/> >> <property as="xs:string" name="oxf.fr.authentication.header.roles" >> value="My-Roles-Header"/> >> <property as="xs:string" >> name="oxf.fr.authentication.header.roles.property-name" >> value=""/> >> <property as="xs:string" name="oxf.fr.authentication.container.roles" >> value="orbeon admin user"/> >> >> >> >> -- >> You receive this message as a subscriber of the [hidden email] mailing >> list. >> To unsubscribe: mailto:[hidden email] >> For general help: mailto:[hidden email]?subject=help >> OW2 mailing lists service home page: http://www.ow2.org/wws >> >> >> > > > > -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Administrator
|
Hi Randy,
We included a paragraph about this in the compatibility note for the 3.8 release, but you are perfectly excused as I reckon that reading compatibility notes is not what most people would consider to be their favorite pass time! http://wiki.orbeon.com/forms/doc/developer-guide/release-orbeon-forms-38#TOC-Compatibility-notes Alex On Thu, May 20, 2010 at 3:09 PM, Randy Smith <[hidden email]> wrote: > Thanks Alex, > You were doing me good and I didn't know it. :-) > Works great! > Randy > > Alessandro Vernet wrote: >> >> Hi Randy, >> >> We moved those files inside our jar files, to avoid you being tempted >> to change those files directly ;). Instead of changing >> properties-form-runner.xml, you can override properties defined there >> in your properties-local.xml. That file only contains your properties, >> which make it easier for you to upgrade to newer version of Orbeon >> Forms. Also see "Overriding properties" on: >> >> http://wiki.orbeon.com/forms/doc/developer-guide/configuration-properties >> >> Alex >> >> On Tue, May 18, 2010 at 11:24 AM, Randy Smith <[hidden email]> wrote: >> >>> >>> *All,* >>> >>> Where is */properties-form-runner.xml/* in the new CE version? I don't >>> see >>> it >>> under the conf folder. The below setting I change in some cases to access >>> another exit db instance >>> other than the embedded one. >>> >>> Thanks, >>> >>> Randy >>> >>> >>> <properties xmlns:xs="http://www.w3.org/2001/XMLSchema" >>> xmlns:oxf="http://www.orbeon.com/oxf/processors" >>> xmlns:xi="http://www.w3.org/2001/XInclude"> >>> >>> <!-- Form Runner properties --> >>> <property as="xs:anyURI" name="oxf.fr.persistence.app.uri.*.*.*" >>> value="/fr/service/exist"/> >>> >>> <!-- <property as="xs:anyURI" >>> name="oxf.fr.persistence.service.exist.uri" >>> value="/exist/rest/db"/>--> >>> <property as="xs:anyURI" name="oxf.fr.persistence.service.exist.uri" >>> value="http://localhost:8080/exist/rest/db"/> >>> <property as="xs:anyURI " >>> name="oxf.fr.persistence.service.oracle.datasource" >>> value="oracle"/> >>> >>> <property as="xs:anyURI" name="oxf.fr.appserver.uri" >>> value=""/> >>> <property as="xs:string" name="oxf.fr.default-language.*.*" >>> value="en"/> >>> <property as="xs:anyURI" name="oxf.fr.default-logo.uri.*.*" >>> >>> value="oxf:/apps/fr/style/orbeon-logo-trimmed-transparent-30.png"/> >>> <property as="xs:string" name="oxf.fr.css.uri.*.*" >>> value="/ops/yui/reset-fonts-grids/reset-fonts-grids.css >>> >>> /apps/fr/style/form-runner-base.css >>> >>> /apps/fr/style/form-runner-orbeon.css"/> >>> <property as="xs:string" name="oxf.fr.css.uri.orbeon.*" >>> value="/ops/yui/reset-fonts-grids/reset-fonts-grids.css >>> >>> /apps/fr/style/form-runner-base.css >>> >>> /apps/fr/style/form-runner-orbeon.css"/> >>> <property as="xs:string" name="oxf.fr.authentication.method" >>> value="header"/> <!-- "container", "header", or empty --> >>> <property as="xs:string" name="oxf.fr.authentication.header.username" >>> value="My-Username-Header"/> >>> <property as="xs:string" name="oxf.fr.authentication.header.roles" >>> value="My-Roles-Header"/> >>> <property as="xs:string" >>> name="oxf.fr.authentication.header.roles.property-name" >>> value=""/> >>> <property as="xs:string" name="oxf.fr.authentication.container.roles" >>> value="orbeon admin user"/> >>> >>> >>> >>> -- >>> You receive this message as a subscriber of the [hidden email] mailing >>> list. >>> To unsubscribe: mailto:[hidden email] >>> For general help: mailto:[hidden email]?subject=help >>> OW2 mailing lists service home page: http://www.ow2.org/wws >>> >>> >>> >> >> >> >> > > > -- > You receive this message as a subscriber of the [hidden email] mailing > list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > OW2 mailing lists service home page: http://www.ow2.org/wws > > -- Orbeon Forms - Web forms, open-source, for the Enterprise - http://www.orbeon.com/ My Twitter: http://twitter.com/avernet -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws
--
Follow Orbeon on Twitter: @orbeon Follow me on Twitter: @avernet |
Administrator
|
In reply to this post by Deshpande, Ashay
Ashay,
I am running your example, and when I click on the help icon, a small dialog with the help message shows. Are you seeing something different? If you are, could you try to upgrade to the Orbeon Forms 3.8.0 or a recently nightly build and try this again? Alex On Wed, May 19, 2010 at 9:42 AM, Deshpande, Ashay <[hidden email]> wrote: > Hello Alex, > I am trying to implement <xforms:help> for the version of orbeon i.e dev-post-3.7.1.200909302200 that we have. It seems that the <xforms:help> popup works fine for single node binding but it does not work for the nodeset binding [<xforms:repeat>]. > > Could you please let me know if I am implementing it wrong or what would be the work around for the same. > > I have attached two files page-flow.xml and view.xhtml, to reproduce the error, along with this email. > > Thank you. > > Sincerely, > Ashay > > > -- > You receive this message as a subscriber of the [hidden email] mailing list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > OW2 mailing lists service home page: http://www.ow2.org/wws > > -- Orbeon Forms - Web forms, open-source, for the Enterprise - http://www.orbeon.com/ My Twitter: http://twitter.com/avernet -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws
--
Follow Orbeon on Twitter: @orbeon Follow me on Twitter: @avernet |
Hello Alex,
Could you please let me know if you tried running the example on dev-post-3.7.1.200909302200? Also, at this time we would not be able to upgrade to a newer version that the one above. Thank you Ashay -----Original Message----- From: Alessandro Vernet [mailto:[hidden email]] Sent: May 21, 2010 12:57 PM To: [hidden email] Subject: [ops-users] Re: Orbeon version dev-post-3.7.1.200909302200 <xforms:help> popup not working under <xforms:repeat> loop Ashay, I am running your example, and when I click on the help icon, a small dialog with the help message shows. Are you seeing something different? If you are, could you try to upgrade to the Orbeon Forms 3.8.0 or a recently nightly build and try this again? Alex On Wed, May 19, 2010 at 9:42 AM, Deshpande, Ashay <[hidden email]> wrote: > Hello Alex, > I am trying to implement <xforms:help> for the version of orbeon i.e dev-post-3.7.1.200909302200 that we have. It seems that the <xforms:help> popup works fine for single node binding but it does not work for the nodeset binding [<xforms:repeat>]. > > Could you please let me know if I am implementing it wrong or what would be the work around for the same. > > I have attached two files page-flow.xml and view.xhtml, to reproduce the error, along with this email. > > Thank you. > > Sincerely, > Ashay > > > -- > You receive this message as a subscriber of the [hidden email] mailing list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > OW2 mailing lists service home page: http://www.ow2.org/wws > > -- Orbeon Forms - Web forms, open-source, for the Enterprise - http://www.orbeon.com/ My Twitter: http://twitter.com/avernet -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
In reply to this post by Alessandro Vernet
Hello Alex,
Sorry, I missed to mention in my previous email. I tried running the following example on IE 7 browser with debugger on; and I see an error on the page: 'null' is null or not an object, for the first two fields that are under <xforms:repeat>. Sincerely, Ashay -----Original Message----- From: Deshpande, Ashay Sent: May 24, 2010 09:46 AM To: '[hidden email]' Subject: RE: [ops-users] Re: Orbeon version dev-post-3.7.1.200909302200 <xforms:help> popup not working under <xforms:repeat> loop Hello Alex, Could you please let me know if you tried running the example on dev-post-3.7.1.200909302200? Also, at this time we would not be able to upgrade to a newer version that the one above. Thank you Ashay -----Original Message----- From: Alessandro Vernet [mailto:[hidden email]] Sent: May 21, 2010 12:57 PM To: [hidden email] Subject: [ops-users] Re: Orbeon version dev-post-3.7.1.200909302200 <xforms:help> popup not working under <xforms:repeat> loop Ashay, I am running your example, and when I click on the help icon, a small dialog with the help message shows. Are you seeing something different? If you are, could you try to upgrade to the Orbeon Forms 3.8.0 or a recently nightly build and try this again? Alex On Wed, May 19, 2010 at 9:42 AM, Deshpande, Ashay <[hidden email]> wrote: > Hello Alex, > I am trying to implement <xforms:help> for the version of orbeon i.e dev-post-3.7.1.200909302200 that we have. It seems that the <xforms:help> popup works fine for single node binding but it does not work for the nodeset binding [<xforms:repeat>]. > > Could you please let me know if I am implementing it wrong or what would be the work around for the same. > > I have attached two files page-flow.xml and view.xhtml, to reproduce the error, along with this email. > > Thank you. > > Sincerely, > Ashay > > > -- > You receive this message as a subscriber of the [hidden email] mailing list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > OW2 mailing lists service home page: http://www.ow2.org/wws > > -- Orbeon Forms - Web forms, open-source, for the Enterprise - http://www.orbeon.com/ My Twitter: http://twitter.com/avernet -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws |
Administrator
|
Hi Ashay,
I am using a nightly build, just tried again with IE7, and couldn't see the problem you are describing. If this problem has indeed been fixed since the version you are using, you would need to backport the fix to that version. But first, I would try to confirm that this has indeed been fixed, and that it is not just me doing something wrong while trying to reproduce the issue :). You can do this on your side by trying your example with a recent nightly build. Then, if the problem doesn't show up in the nightly build, you could backport the fix, and this is also something we can help you with under Developer Support plan (http://www.orbeon.com/support-services/development). Alex On Mon, May 24, 2010 at 6:50 AM, Deshpande, Ashay <[hidden email]> wrote: > Hello Alex, > Sorry, I missed to mention in my previous email. I tried running the following example on IE 7 browser with debugger on; and I see an error on the page: 'null' is null or not an object, for the first two fields that are under <xforms:repeat>. > > Sincerely, > Ashay > > -----Original Message----- > From: Deshpande, Ashay > Sent: May 24, 2010 09:46 AM > To: '[hidden email]' > Subject: RE: [ops-users] Re: Orbeon version dev-post-3.7.1.200909302200 <xforms:help> popup not working under <xforms:repeat> loop > > Hello Alex, > Could you please let me know if you tried running the example on dev-post-3.7.1.200909302200? Also, at this time we would not be able to upgrade to a newer version that the one above. > > Thank you > > Ashay > > -----Original Message----- > From: Alessandro Vernet [mailto:[hidden email]] > Sent: May 21, 2010 12:57 PM > To: [hidden email] > Subject: [ops-users] Re: Orbeon version dev-post-3.7.1.200909302200 <xforms:help> popup not working under <xforms:repeat> loop > > Ashay, > > I am running your example, and when I click on the help icon, a small > dialog with the help message shows. Are you seeing something > different? If you are, could you try to upgrade to the Orbeon Forms > 3.8.0 or a recently nightly build and try this again? > > Alex > > On Wed, May 19, 2010 at 9:42 AM, Deshpande, Ashay <[hidden email]> wrote: >> Hello Alex, >> I am trying to implement <xforms:help> for the version of orbeon i.e dev-post-3.7.1.200909302200 that we have. It seems that the <xforms:help> popup works fine for single node binding but it does not work for the nodeset binding [<xforms:repeat>]. >> >> Could you please let me know if I am implementing it wrong or what would be the work around for the same. >> >> I have attached two files page-flow.xml and view.xhtml, to reproduce the error, along with this email. >> >> Thank you. >> >> Sincerely, >> Ashay >> >> >> -- >> You receive this message as a subscriber of the [hidden email] mailing list. >> To unsubscribe: mailto:[hidden email] >> For general help: mailto:[hidden email]?subject=help >> OW2 mailing lists service home page: http://www.ow2.org/wws >> >> > > > > -- > Orbeon Forms - Web forms, open-source, for the Enterprise - > http://www.orbeon.com/ > My Twitter: http://twitter.com/avernet > > > -- > You receive this message as a subscriber of the [hidden email] mailing list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > OW2 mailing lists service home page: http://www.ow2.org/wws > > -- Orbeon Forms - Web forms, open-source, for the Enterprise - http://www.orbeon.com/ My Twitter: http://twitter.com/avernet -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help OW2 mailing lists service home page: http://www.ow2.org/wws
--
Follow Orbeon on Twitter: @orbeon Follow me on Twitter: @avernet |
Free forum by Nabble | Edit this page |