Re: [galaxy-dev] html output with javascript

2014-02-05 Thread Laure QUINTRIC
Hi Dannon, It works after setting sanitize_all_html to True, thanks a lot. Laure Le 05/02/2014 16:42, Dannon Baker a écrit : Hi Laure, This is intentional behavior; galaxy sanitizes all html output as a security measure by default. You can turn this off on your instance by changing "sanitize

Re: [galaxy-dev] html output with javascript

2014-02-05 Thread Dannon Baker
Hi Laure, This is intentional behavior; galaxy sanitizes all html output as a security measure by default. You can turn this off on your instance by changing "sanitize_all_html" to False in your universe_wsgi.ini. There's a Trello card to track implementation of allowing administrators to indivi

[galaxy-dev] html output with javascript

2014-02-05 Thread Laure QUINTRIC
Hello galaxy users, one of my tools returns an html output in which I have links to images and javascripts. Images and Javascripts of the dataset_XXX.dat file are located in a dataset_XXX_files directory. Images are well displayed in galaxy output but javascripts aren't executed. Even an alert

Re: [galaxy-dev] HTML output with Javascript

2012-03-22 Thread Dannon Baker
avas wrote: > Hi Dannon, > > Thank you for your quick answer. I search in my Galaxy instance's > universe_wsgi.ini and I didn't find this option... Where can I add this > option? > > Thanks, > > Jose > > > Subject: Re: [galaxy-dev] HTML output with J

Re: [galaxy-dev] HTML output with Javascript

2012-03-22 Thread Jose Navas
Hi Dannon, Thank you for your quick answer. I search in my Galaxy instance's universe_wsgi.ini and I didn't find this option... Where can I add this option? Thanks, Jose > Subject: Re: [galaxy-dev] HTML output with Javascript > From: dannonba...@me.com > Date: Thu, 22 Mar

Re: [galaxy-dev] HTML output with Javascript

2012-03-22 Thread Dannon Baker
Assuming everything is generated correctly for the html report, what you're probably running into is Galaxy's html sanitization. In your Galaxy instance's universe_wsgi.ini you can set the following option (to false) to disable this: # Sanitize All HTML # By default, all tool output served as '

[galaxy-dev] HTML output with Javascript

2012-03-22 Thread Jose Navas
Hi Galaxy developers, I have a tool that generates an html output which executes some javascript functions that are defined in a *.js file. I put this file under the $output1.files_path but when I display the html file in the galaxy browser, it doesn't executes the Javascript. What can I do to