2009-11-30 Raul Mateos <raulofpandora@gmail.com>

* godmode/servers/plugin.php, godmode/reporting/map_builder.php,
	godmode/profiles/profile_list.php, godmode/reporting/map_builder_wizard.php,
	godmode/agentes/module_manager.php, godmode/agentes/planned_downtime.php:
	Better use of icons in creating components, improving appearance.

	* DEBIAN/make_deb_package.sh: Changed version string from rc2 to RC3.

git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2142 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
raulmateos 2009-11-30 07:57:17 +00:00
parent 5458231989
commit 1569611847
8 changed files with 19 additions and 9 deletions

View File

@ -1,3 +1,12 @@
2009-11-30 Raul Mateos <raulofpandora@gmail.com>
* godmode/servers/plugin.php, godmode/reporting/map_builder.php,
godmode/profiles/profile_list.php, godmode/reporting/map_builder_wizard.php,
godmode/agentes/module_manager.php, godmode/agentes/planned_downtime.php:
Better use of icons in creating components, improving appearance.
* DEBIAN/make_deb_package.sh: Changed version string from rc2 to RC3.
2009-11-27 Sancho lerena <slerena@artica.es>
* operation/menu.php: User section has no ACL check, always can be seen.

View File

@ -14,7 +14,7 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
pandora_console_version="3.0.0.rc2"
pandora_console_version="3.0.0.RC3"
echo "Test if you have all the needed tools to make the packages."
whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null

View File

@ -59,7 +59,7 @@ print_select ($modules, 'moduletype', '', '', '', '', false, false, false);
print_input_hidden ('edit_module', 1);
echo '</td>';
echo '<td class="datos">';
echo '<input align="right" name="updbutton" type="submit" class="sub wand" value="'.__('Create').'">';
echo '<input align="right" name="updbutton" type="submit" class="sub next" value="'.__('Create').'">';
echo "</form>";
echo "</table>";

View File

@ -308,7 +308,7 @@ echo __('Planned Downtime').'</h2>';
echo '<form method="post" action="index.php?sec=gagente&amp;sec2=godmode/agentes/planned_downtime">';
print_input_hidden ("first_create", 1);
print_submit_button (__('Create'), 'create', false, 'class="sub wand"');
print_submit_button (__('Create'), 'create', false, 'class="sub next"');
echo '</form>';
echo '</div>';
}

View File

@ -194,7 +194,7 @@ if ($id_profile || $new_profile) {
echo '<div class="action-buttons" style="width: '.$table->width.'">';
if ($new_profile) {
print_submit_button (__('Create'), "crt", false, 'class="sub next"');
print_submit_button (__('Add'), "crt", false, 'class="sub wand"');
print_input_hidden ('create_profile', 1);
} else {
print_input_hidden ('id', $id_profile);

View File

@ -340,7 +340,7 @@ if (! $edit_layout && ! $id_layout) {
echo '<div class="action-buttons" style="width: '.$table->width.'">';
echo '<form action="index.php?sec=greporting&amp;sec2=godmode/reporting/map_builder" method="post">';
print_input_hidden ('edit_layout', 1);
print_submit_button (__('Create'), '', false, 'class="sub wand"');
print_submit_button (__('Create'), '', false, 'class="sub next"');
echo '</form>';
echo '</div>';
} else {
@ -379,7 +379,7 @@ if (! $edit_layout && ! $id_layout) {
print_input_hidden ('update_layout', 1);
print_input_hidden ('id_layout', $id_layout);
} else {
print_submit_button (__('Create'), 'create_layout', false, 'class="sub wand"');
print_submit_button (__('Add'), 'create_layout', false, 'class="sub wand"');
print_input_hidden ('create_layout', 1);
}
echo '</div>';

View File

@ -113,7 +113,8 @@ function process_wizard_add_modules ($id_modules, $image, $id_layout, $range, $w
print_success_message (__('Modules successfully added to layout'));
}
echo '<h2>'.__('Visual map wizard').' - '.$layout["name"].'</h2>';
echo "<h2>".__('Reporting')." &raquo; ";
echo __('Visual map wizard').' - '.$layout["name"].'</h2>';
$id_agents = get_parameter ('id_agents', array ());
$id_modules = get_parameter ('module', array ());
@ -175,7 +176,7 @@ print_table ($table);
echo '<div class="action-buttons" style="width: '.$table->width.'" onsubmit="if (!confirm(\' '.__('Are you sure?').'\')) return false;">';
print_input_hidden ('add', 1);
print_input_hidden ('id_layout', $layout["id"]);
print_submit_button (__('Add'), 'go', false, 'class="sub wizard"');
print_submit_button (__('Add'), 'go', false, 'class="sub wizard wand"');
echo '</div>';
echo '</form>';
?>

View File

@ -245,7 +245,7 @@ else {
echo "<table width=730>";
echo "<tr><td align=right>";
echo "<form name=plugin method='post' action='index.php?sec=gservers&sec2=godmode/servers/plugin&create=1'>";
echo "<input name='crtbutton' type='submit' class='sub wand' value='".__('Create')."'>";
echo "<input name='crtbutton' type='submit' class='sub next' value='".__('Add')."'>";
echo "</table>";
}