Hi Chuck, Tapestry5-jQuery Project Fully replace Prototype and Scriptaculous with jQuery. So Actually there is no Prototype at all for this project.
About http://docs.jquery.com/Using_jQuery_with_Other_Libraries for your information this project use jQuery plugin approach. which allows you to use $ inside of a block of code without permanently overwriting $: - (function($) { */* some code that uses $ */* })(jQuery) - *Note:* If you use this technique, you will not be able to use Prototype methods inside this capsuled function that expect $ to be Prototype's $, so you're making a choice to use only jQuery in that block. François 2010/11/10 Chuck Kring <cjkr...@pacbell.net> > I'm using T5.0.5 and the Jquery accordion. I ran into compatibility > issues between JQuery and Prototype that were solved using the suggestions > on this page: > > http://docs.jquery.com/Using_jQuery_with_Other_Libraries > > Chuck Kring > > > On 11/10/2010 11:19 AM, iberck wrote: > >> Dear tapestry users: >> >> I try to use http://github.com/andyhot/tapestry5-jquery/tree/tap-5.2 with >> Tapestry 5.2 but I have some problems, when I open my application I watch >> the exception: >> >> org.apache.tapestry5.internal.services.RenderQueueException: Render queue >> error in SetupRender[core/ExceptionReport:exceptiondisplay]: Unable to >> create a client URL for classpath resource org/got5/tapestry5/tapestry.js: >> The resource path was not within an aliased path. [at >> classpath:org/apache/tapestry5/corelib/pages/ExceptionReport.tml, line 11] >> >> My pom.xml >> >> <dependency> >> <groupId>org.apache.tapestry</groupId> >> <artifactId>tapestry-core</artifactId> >> <version>5.2.2</version> >> </dependency> >> <dependency> >> <groupId>org.got5</groupId> >> <artifactId>tapestry5-jquery</artifactId> >> <version>1.1.0-SNAPSHOT</version> >> </dependency> >> >> ... >> <repository> >> <id>devlab722-repo</id> >> >> <url>http://nexus.devlab722.net/nexus/content/repositories/releases</url> >> <releases> >> <enabled>true</enabled> >> </releases> >> <snapshots> >> <enabled>false</enabled> >> </snapshots> >> </repository> >> >> <repository> >> <id>devlab722-snapshot-repo</id> >> >> <url>http://nexus.devlab722.net/nexus/content/repositories/snapshots >> </url> >> <releases> >> <enabled>false</enabled> >> </releases> >> <snapshots> >> <enabled>true</enabled> >> </snapshots> >> </repository> >> >> Anyone may help me ? >> >> Thanks in advance for your time >> >>