On Apr 22, 2007, at 7:03 AM, Team Vit wrote:
Hi there,
I would like to completely change the web interface of the AJAX
desktop,
by dropping dojo, and the layouts concepts. If I had to do so, How
would i
go about it
I think you would first have to have a good understanding of the code
I would start reviewing the code, maybe taking it through the
debugger, walking thru it
Also have a look at the /desktop pipeline, and then the desktop
javascript code
Could Someone please guide me here as to where to start???
Also, if i had to disable the /portal view, how would i do it??
Remove the /portal entry from the mapping in the Spring configuration
file pipelines.xml:
<bean id='pipeline-map'
class='java.util.HashMap'>
<constructor-arg>
<map>
<entry key='/portlet'>
<value>portlet-pipeline</value>
</entry>
<entry key='/portal'>
<value>jetspeed-pipeline</value>
</entry>
Also remove the pipeline itself :
<bean id="jetspeed-pipeline"
class="org.apache.jetspeed.pipeline.JetspeedPipeline"
init-method="initialize"
>