paster uses pipelines to do that [app:app1] use = egg:app1
[app:app2] use = egg:app2 [composite:main] use = egg:Paste#urlmap / = app1 /app2 = app2 If you need to use exceptions, you can do something like: [pipeline:pipeapp2] pipeline = exc tm app2 and in your composite:main /app2 = pipeapp2 composite is the section you need to read in the docs to understand it more fully. -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
