Source Code for Orbeon 3.7.1

classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Source Code for Orbeon 3.7.1

Gopi Krishna-5

Hi All,

 

I found the source code for nightly build in orbeon website . But, Is there a way that I can get, the source code for 3.7.1 or any Subversion access for the code.

 

Thanks,

Gopi Krishna

 

This message may contain privileged and/or confidential information. If you have received this e-mail in error or are not the intended recipient, you may not use, copy, disseminate or distribute it; do not open any attachments, delete it immediately from your system and notify the sender promptly by e-mail that you have done so. Thank you.
Powered by STPL Portal .



--
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
Reply | Threaded
Open this post in threaded view
|

Customize Error Page in a Seperate Deployment

Ganaphathy, Karunamoorthy

All,

 

We are using Orbeon and Java application with separate deployment. When there is an Exception the Orbeon Exception page is shown in our Application. Is there a way to override this page from the Java Application?

 

Thanks

Karun

 

 

This message may contain privileged and/or confidential information. If you have received this e-mail in error or are not the intended recipient, you may not use, copy, disseminate or distribute it; do not open any attachments, delete it immediately from your system and notify the sender promptly by e-mail that you have done so. Thank you.
Powered by STPL Portal .

--
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
Reply | Threaded
Open this post in threaded view
|

Re: Customize Error Page in a Seperate Deployment

Alessandro  Vernet
Administrator
Karun,

On Wed, Nov 11, 2009 at 8:15 AM, Ganaphathy, Karunamoorthy
<[hidden email]> wrote:
> We are using Orbeon and Java application with separate deployment. When
> there is an Exception the Orbeon Exception page is shown in our Application.
> Is there a way to override this page from the Java Application?

When using separate deployment, your requests will go through the
orbeon-renderer-servlet as declared in the Orbeon Forms web.xml. It is
defined there as:

    <servlet>
        <servlet-name>orbeon-renderer-servlet</servlet-name>
        <servlet-class>org.orbeon.oxf.servlet.OrbeonServletDelegate</servlet-class>
        <!--Set main processor-->
        <init-param>
            <param-name>oxf.main-processor.name</param-name>
            <param-value>{http://www.orbeon.com/oxf/processors}page-flow</param-value>
        </init-param>
        <init-param>
            <param-name>oxf.main-processor.input.controller</param-name>
            <param-value>oxf:/ops/xforms/xforms-renderer-page-flow.xml</param-value>
        </init-param>
        <!--Set error processor-->
        <init-param>
            <param-name>oxf.error-processor.name</param-name>
            <param-value>{http://www.orbeon.com/oxf/processors}pipeline</param-value>
        </init-param>
        <init-param>
            <param-name>oxf.error-processor.input.config</param-name>
            <param-value>oxf:/config/error.xpl</param-value>
        </init-param>
    </servlet>

You can see there the reference to the oxf:/config/error.xpl, which
itself uses error.xsl. Those files are looked up as resources. They
are in the jar files of Orbeon Forms, and you can override them with
your own files in the Orbeon's WEB-INF/resources.

I think we could make it so those files could be in your war file, but
we would have to change the WebAppResourceManager for this, so it can
look for an file in the the context of another web app.

Alex
--
Orbeon Forms - Web forms, open-source, for the Enterprise
Orbeon's Blog: http://www.orbeon.com/blog/
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
Reply | Threaded
Open this post in threaded view
|

Re: Source Code for Orbeon 3.7.1

Erik Bruchez-3
In reply to this post by Gopi Krishna-5
Gopi,

The source code is now on github:

http://github.com/orbeon/orbeon-forms/

Previously, it was on CVS (older code is still accessible from there):

http://forge.ow2.org/scm/?group_id=168

You could still get it from CVS as well since version 3.7.1 was
released before the switch to github. Since the release is named
orbeon-dev-3.7.1.200905272119.zip, this means the CVS tag is
TAG_OPS_dev-3_7_1_200905272119:

cvs -z3 -d:pserver:[hidden email]:/cvsroot/ops co
-r TAG_OPS_dev-3_7_1_200905272119 orbeon

-Erik

On Wed, Nov 11, 2009 at 5:52 AM, Gopi <[hidden email]> wrote:

> Hi All,
>
>
>
> I found the source code for nightly build in orbeon website . But, Is there
> a way that I can get, the source code for 3.7.1 or any Subversion access for
> the code.
>
>
>
> Thanks,
>
> Gopi Krishna
>
>
>
> This message may contain privileged and/or confidential information. If you
> have received this e-mail in error or are not the intended recipient, you
> may not use, copy, disseminate or distribute it; do not open any
> attachments, delete it immediately from your system and notify the sender
> promptly by e-mail that you have done so. Thank you.
> Powered by STPL Portal .
>
>
>
> --
> 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