2014-06-09 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_config.php, general/login_page.php: improved
the source code style.
* godmode/setup/os.builder.php: fixed the form.
* godmode/update_manager_xxx/*, godmode/menu.php,
include/functions_update_manager.php,
include/ajax/update_manager.ajax.php,
include/graphs/functions_gd.php, include/graphs/functions_flot.php,
include/config_process.php, include/javascript/update_manager.js,
include/javascript/jquery.knob.js,
include/javascript/jquery.iframe-transport.js,
include/javascript/jquery.fileupload.js, images/check-cross.png:
first version of new update manager.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10144 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-06-09 15:33:55 +02:00
< ? php
// Pandora FMS - http://pandorafms.com
// ==================================================
// Copyright (c) 2005-2011 Artica Soluciones Tecnologicas
// Please see http://pandorafms.org for full contribution list
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; version 2
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
global $config ;
2015-06-30 12:59:23 +02:00
// ui_require_css_file('update_manager', 'godmode/update_manager/');
2016-04-13 13:51:01 +02:00
check_login ();
// ui_require_css_file('update_manager', 'godmode/update_manager/');
if ( ! check_acl ( $config [ 'id_user' ], 0 , " PM " ) && ! is_user_admin ( $config [ 'id_user' ])) {
db_pandora_audit ( " ACL Violation " , " Trying to access Setup Management " );
require ( " general/noaccess.php " );
return ;
}
2015-06-30 12:59:23 +02:00
$baseurl = ui_get_full_url ( false , false , false , false );
2014-06-09 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_config.php, general/login_page.php: improved
the source code style.
* godmode/setup/os.builder.php: fixed the form.
* godmode/update_manager_xxx/*, godmode/menu.php,
include/functions_update_manager.php,
include/ajax/update_manager.ajax.php,
include/graphs/functions_gd.php, include/graphs/functions_flot.php,
include/config_process.php, include/javascript/update_manager.js,
include/javascript/jquery.knob.js,
include/javascript/jquery.iframe-transport.js,
include/javascript/jquery.fileupload.js, images/check-cross.png:
first version of new update manager.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10144 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-06-09 15:33:55 +02:00
?>
2015-06-30 12:59:23 +02:00
<!-- Add the stylesheet here cause somehow the 'ui_require_css_file' is not working on the metaconsole and there is no time to fix it -->
< link rel = " stylesheet " type = " text/css " href = " <?php echo $baseurl ; ?>/godmode/update_manager/update_manager.css " >
2014-06-09 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_config.php, general/login_page.php: improved
the source code style.
* godmode/setup/os.builder.php: fixed the form.
* godmode/update_manager_xxx/*, godmode/menu.php,
include/functions_update_manager.php,
include/ajax/update_manager.ajax.php,
include/graphs/functions_gd.php, include/graphs/functions_flot.php,
include/config_process.php, include/javascript/update_manager.js,
include/javascript/jquery.knob.js,
include/javascript/jquery.iframe-transport.js,
include/javascript/jquery.fileupload.js, images/check-cross.png:
first version of new update manager.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10144 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-06-09 15:33:55 +02:00
< script type = " text/javascript " >
2015-06-30 12:59:23 +02:00
var drop_the_package_here_or = " <?php echo __('Drop the package here or'); ?> \n " ;
var browse_it = " <?php echo __('browse it'); ?> \n " ;
var the_package_has_been_uploaded_successfully = " <?php echo __('The package has been uploaded successfully.'); ?> \n " ;
2018-05-10 17:15:37 +02:00
var remember_that_this_package_will = " <?php echo __( " Please keep in mind that this package is going to override your actual % s files and that it ' s recommended to conduct a backup before continuing the updating process . " , get_product_name()); ?> \n " ;
2015-06-30 12:59:23 +02:00
var click_on_the_file_below_to_begin = " <?php echo __('Click on the file below to begin.'); ?> \n " ;
var updating = " <?php echo __('Updating'); ?> \n " ;
var package_updated_successfully = " <?php echo __('Package updated successfully.'); ?> \n " ;
2017-04-25 17:24:32 +02:00
var if_there_are_any_database_change = " <?php echo __('If there are any database change, it will be applied.'); ?> \n " ;
2017-03-15 13:20:05 +01:00
var mr_available = " <?php echo __('Minor release available'); ?> \n " ;
var package_available = " <?php echo __('New package available'); ?> \n " ;
2017-03-15 13:53:25 +01:00
var mr_not_accepted = " <?php echo __('Minor release rejected. Changes will not apply.'); ?> \n " ;
2017-03-23 15:53:05 +01:00
var mr_not_accepted_code_yes = " <?php echo __('Minor release rejected. The database will not be updated and the package will apply.'); ?> \n " ;
2017-03-15 13:53:25 +01:00
var mr_cancel = " <?php echo __('Minor release rejected. Changes will not apply.'); ?> \n " ;
var package_cancel = " <?php echo __('These package changes will not apply.'); ?> \n " ;
var package_not_accepted = " <?php echo __('Package rejected. These package changes will not apply.'); ?> \n " ;
2017-03-15 13:20:05 +01:00
var mr_success = " <?php echo __('Database successfully updated'); ?> \n " ;
var mr_error = " <?php echo __('Error in MR file'); ?> \n " ;
var package_success = " <?php echo __('Package updated successfully'); ?> \n " ;
2017-03-15 13:53:25 +01:00
var package_error = " <?php echo __('Error in package updated'); ?> \n " ;
var bad_mr_file = " <?php echo __('Database MR version is inconsistent, do you want to apply the package?'); ?> \n " ;
2017-04-26 09:50:42 +02:00
var mr_available_header = " <?php echo __('There are db changes'); ?> \n " ;
2017-04-04 17:35:11 +02:00
var text1_mr_file = " <?php echo __('There are new database changes available to apply. Do you want to start the DB update process?'); ?> \n " ;
var text2_mr_file = " <?php echo __('We recommend launching '); ?> \n " ;
2017-03-15 13:20:05 +01:00
var text3_mr_file = " <?php echo __('planned downtime'); ?> \n " ;
2017-06-28 15:47:24 +02:00
var text4_mr_file = " <?php
if ( $config [ 'language' ] == 'es' ){
echo __ ( ' to this process' ) . '<br><br><a style=\"font-size:10pt;font-style:italic;\" target=\"blank\" href=\"http://wiki.pandorafms.com/index.php?title=Pandora:Documentation_es:Actualizacion#Versi.C3.B3n_7.0NG_.28_Rolling_Release_.29\">' . __ ( 'About minor release update' ) . '</a>' ;
}
else {
echo __ ( ' to this process' ) . '<br><br><a style=\"font-size:10pt;font-style:italic;\" target=\"blank\" href=\"http://wiki.pandorafms.com/index.php?title=Pandora:Documentation_en:Anexo_Upgrade#Version_7.0NG_.28_Rolling_Release_.29\">' . __ ( 'About minor release update' ) . '</a>' ;
}
?> ";
2017-03-15 14:37:52 +01:00
var text1_package_file = " <?php echo __('There is a new update available'); ?> \n " ;
var text2_package_file = " <?php echo __('There is a new update available to apply. Do you want to start the update process?'); ?> \n " ;
2017-03-15 13:20:05 +01:00
var applying_mr = " <?php echo __('Applying DB MR'); ?> \n " ;
2017-04-26 09:50:42 +02:00
var cancel_button = " <?php echo __('Cancel'); ?> \n " ;
var ok_button = " <?php echo __('Ok'); ?> \n " ;
var apply_mr_button = " <?php echo __('Apply MR'); ?> \n " ;
var apply_button = " <?php echo __('Apply'); ?> \n " ;
2014-06-09 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_config.php, general/login_page.php: improved
the source code style.
* godmode/setup/os.builder.php: fixed the form.
* godmode/update_manager_xxx/*, godmode/menu.php,
include/functions_update_manager.php,
include/ajax/update_manager.ajax.php,
include/graphs/functions_gd.php, include/graphs/functions_flot.php,
include/config_process.php, include/javascript/update_manager.js,
include/javascript/jquery.knob.js,
include/javascript/jquery.iframe-transport.js,
include/javascript/jquery.fileupload.js, images/check-cross.png:
first version of new update manager.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10144 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-06-09 15:33:55 +02:00
</ script >
< form id = " form-offline_update " method = " post " enctype = " multipart/form-data " class = " fileupload_form " >
< div ></ div >
< ul ></ ul >
</ form >
2015-06-30 12:59:23 +02:00
< script src = " <?php echo $baseurl ; ?>/include/javascript/jquery.fileupload.js " ></ script >
< script src = " <?php echo $baseurl ; ?>/include/javascript/jquery.iframe-transport.js " ></ script >
< script src = " <?php echo $baseurl ; ?>/include/javascript/jquery.knob.js " ></ script >
2014-06-09 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_config.php, general/login_page.php: improved
the source code style.
* godmode/setup/os.builder.php: fixed the form.
* godmode/update_manager_xxx/*, godmode/menu.php,
include/functions_update_manager.php,
include/ajax/update_manager.ajax.php,
include/graphs/functions_gd.php, include/graphs/functions_flot.php,
include/config_process.php, include/javascript/update_manager.js,
include/javascript/jquery.knob.js,
include/javascript/jquery.iframe-transport.js,
include/javascript/jquery.fileupload.js, images/check-cross.png:
first version of new update manager.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10144 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-06-09 15:33:55 +02:00
2015-06-30 12:59:23 +02:00
< script src = " <?php echo $baseurl ; ?>/include/javascript/update_manager.js " ></ script >
2014-06-09 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_config.php, general/login_page.php: improved
the source code style.
* godmode/setup/os.builder.php: fixed the form.
* godmode/update_manager_xxx/*, godmode/menu.php,
include/functions_update_manager.php,
include/ajax/update_manager.ajax.php,
include/graphs/functions_gd.php, include/graphs/functions_flot.php,
include/config_process.php, include/javascript/update_manager.js,
include/javascript/jquery.knob.js,
include/javascript/jquery.iframe-transport.js,
include/javascript/jquery.fileupload.js, images/check-cross.png:
first version of new update manager.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10144 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-06-09 15:33:55 +02:00
< script type = " text/javascript " >
2015-06-30 12:59:23 +02:00
form_upload ( " <?php echo $baseurl ; ?> " );
2017-05-22 17:51:21 +02:00
</ script >