2009-09-25 Miguel de Dios <miguel.dedios@artica.es>

* include/javascript/pandora_modules.js: fix the js and add more entities
	for decode.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1981 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2009-09-25 16:31:39 +00:00
parent 675b27c461
commit f8efe4e917
2 changed files with 13 additions and 6 deletions

View File

@ -1,25 +1,30 @@
2009-09-18 Miguel de Dios <miguel.dedios@artica.es> 2009-09-25 Miguel de Dios <miguel.dedios@artica.es>
* include/javascript/pandora_modules.js: fix the js and add more entities
for decode.
2009-09-25 Miguel de Dios <miguel.dedios@artica.es>
* godmode/modules/manage_network_components.php: change the duplicate * godmode/modules/manage_network_components.php: change the duplicate
method and delete method, before it's a form with post and now it's a method and delete method, before it's a form with post and now it's a
link with get. link with get.
2009-09-18 Miguel de Dios <miguel.dedios@artica.es> 2009-09-25 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/configurar_agente.php: add the feature to delete remote * godmode/agentes/configurar_agente.php: add the feature to delete remote
conf file in the agent configuration. conf file in the agent configuration.
2009-09-18 Miguel de Dios <miguel.dedios@artica.es> 2009-09-25 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_db.php: fix the delete the conf and md5 files of agent * include/functions_db.php: fix the delete the conf and md5 files of agent
to delete, before try delete conf and md5 files with name in uppercase. to delete, before try delete conf and md5 files with name in uppercase.
2009-09-18 Miguel de Dios <miguel.dedios@artica.es> 2009-09-25 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_html.php: add second parameter for trace a log in server * include/functions_html.php: add second parameter for trace a log in server
file (plain text). file (plain text).
2009-09-18 Miguel de Dios <miguel.dedios@artica.es> 2009-09-25 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager.php: add checkbox to multiple delete * godmode/agentes/module_manager.php: add checkbox to multiple delete
modules in agent managent. And add class style css for disabled modules. modules in agent managent. And add class style css for disabled modules.

View File

@ -68,7 +68,9 @@ function configure_modules_form () {
"id_module_component" : this.value "id_module_component" : this.value
}, },
function (data, status) { function (data, status) {
configuration_data = data['data'].replace(/&lt;/g,'<').replace(/&gt;/g,'>').replace(/&amp;/g,'&'); configuration_data = data['data']
.replace(/&lt;/g,'<').replace(/&gt;/g,'>')
.replace(/&#92;/g,'\\').replace(/&quot;/g,'\"').replace(/&#039;/g,'\'').replace(/&amp;/g,'&');
$("#text-name").attr ("value", html_entity_decode (data["name"])); $("#text-name").attr ("value", html_entity_decode (data["name"]));
$("#textarea_description").attr ("value", html_entity_decode (data["description"])); $("#textarea_description").attr ("value", html_entity_decode (data["description"]));