diff --git a/trunk/business/ServiceDesk.business.php b/trunk/business/ServiceDesk.business.php
index 6c15d0b77..bdcd80347 100644
--- a/trunk/business/ServiceDesk.business.php
+++ b/trunk/business/ServiceDesk.business.php
@@ -54,13 +54,13 @@ class bizServiceCall extends cmdbAbstractObject
MetaModel::Init_AddAttribute(new AttributeDate("next_update", array("label"=>"Next update", "description"=>"next time the Ticket is expected to be modified", "allowed_values"=>null, "sql"=>"next_update", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
MetaModel::Init_AddAttribute(new AttributeDate("end_date", array("label"=>"Closure Date", "description"=>"Date when the call was closed", "allowed_values"=>null, "sql"=>"closed_date", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeExternalKey("caller_id", array("targetclass"=>"bizPerson", "jointype"=> "", "label"=>"Caller", "description"=>"person that trigger this call", "allowed_values"=>null, "sql"=>"caller_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeExternalKey("caller_id", array("targetclass"=>"bizPerson", "jointype"=> "", "label"=>"Caller", "description"=>"person that trigger this call", "allowed_values"=>new ValueSetObjects('SELECT bizPerson AS p WHERE p.org_id = :this->org_id'), "sql"=>"caller_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array('org_id'))));
MetaModel::Init_AddAttribute(new AttributeExternalField("caller_mail", array("label"=>"Caller", "description"=>"Person that trigger this call", "allowed_values"=>null, "extkey_attcode"=> 'caller_id', "target_attcode"=>"email")));
MetaModel::Init_AddAttribute(new AttributeString("impact", array("label"=>"Impact", "description"=>"Impact for this call", "allowed_values"=>null, "sql"=>"impact", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
MetaModel::Init_AddAttribute(new AttributeExternalKey("workgroup_id", array("targetclass"=>"bizWorkgroup", "jointype"=> "", "label"=>"Workgroup", "description"=>"which workgroup is owning call", "allowed_values"=>null, "sql"=>"workgroup_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
MetaModel::Init_AddAttribute(new AttributeExternalField("workgroup_name", array("label"=>"Workgroup", "description"=>"name of workgroup managing the call", "allowed_values"=>null, "extkey_attcode"=> 'workgroup_id', "target_attcode"=>"name")));
- MetaModel::Init_AddAttribute(new AttributeExternalKey("agent_id", array("targetclass"=>"bizPerson", "jointype"=> "", "label"=>"Agent", "description"=>"who is managing the call", "allowed_values"=>null, "sql"=>"agent_id", "is_null_allowed"=>true, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array("workgroup_id"))));
+ MetaModel::Init_AddAttribute(new AttributeExternalKey("agent_id", array("targetclass"=>"bizPerson", "jointype"=> "", "label"=>"Agent", "description"=>"who is managing the call", "allowed_values"=>new ValueSetObjects('SELECT bizPerson AS p JOIN lnkContactTeam AS l ON l.contact_id=p.id JOIN bizTeam AS t ON l.team_id=t.id JOIN bizWorkgroup AS w ON w.team_id=t.id WHERE w.id = :this->workgroup_id'), "sql"=>"agent_id", "is_null_allowed"=>true, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array("workgroup_id"))));
MetaModel::Init_AddAttribute(new AttributeExternalField("agent_mail", array("label"=>"Agent", "description"=>"mail of agent managing the call", "allowed_values"=>null, "extkey_attcode"=> 'agent_id', "target_attcode"=>"email")));
// Comment afficher le first + last name de l'agent ? Est-ce utile d'ajouter ce champ?
MetaModel::Init_AddAttribute(new AttributeText("action_log", array("label"=>"Action Logs", "description"=>"List all action performed during the call", "allowed_values"=>null, "sql"=>"action_log", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
@@ -98,14 +98,20 @@ class bizServiceCall extends cmdbAbstractObject
// State machine
MetaModel::Init_DefineState("New", array("label"=>"New (Unassigned)", "description"=>"Newly created call", "attribute_inherit"=>null,
- "attribute_list"=>array('name' => OPT_ATT_READONLY, 'end_date' => OPT_ATT_HIDDEN, 'last_update' => OPT_ATT_HIDDEN,
+ "attribute_list"=>array('name' => OPT_ATT_READONLY, 'end_date' => OPT_ATT_HIDDEN, 'last_update' => OPT_ATT_READONLY,
"title"=>OPT_ATT_MANDATORY, "org_id"=>OPT_ATT_MANDATORY, "caller_id"=>OPT_ATT_MANDATORY, "call_description"=>OPT_ATT_MANDATORY, "creation_date"=>OPT_ATT_MANDATORY, "workgroup_id"=>OPT_ATT_MANDATORY,
"severity"=>OPT_ATT_MANDATORY, "agent_id"=>OPT_ATT_HIDDEN,"impacted_infra_manual"=>OPT_ATT_MANDATORY, "related_tickets"=>OPT_ATT_MUSTPROMPT)));
MetaModel::Init_DefineState("Assigned", array("label"=>"Assigned", "description"=>"Call is assigned to somebody", "attribute_inherit"=>null,
- "attribute_list"=>array('name' => OPT_ATT_READONLY, "title"=>OPT_ATT_READONLY, "org_id"=>OPT_ATT_READONLY, "caller_id"=>OPT_ATT_READONLY, "call_description"=>OPT_ATT_READONLY, "creation_date"=>OPT_ATT_READONLY,'end_date' => OPT_ATT_HIDDEN, "workgroup_id"=>OPT_ATT_MUSTCHANGE, "agent_id"=>OPT_ATT_MUSTCHANGE)));
- MetaModel::Init_DefineState("WorkInProgress", array("label"=>"Work In Progress", "description"=>"Work is in progress", "attribute_inherit"=>null, "attribute_list"=>array("title"=>OPT_ATT_READONLY, "org_id"=>OPT_ATT_READONLY, "caller_id"=>OPT_ATT_READONLY, "call_description"=>OPT_ATT_READONLY,'end_date' => OPT_ATT_HIDDEN, "creation_date"=>OPT_ATT_READONLY,"workgroup_id"=>OPT_ATT_MANDATORY, "agent_id"=>OPT_ATT_MANDATORY)));
- MetaModel::Init_DefineState("Resolved", array("label"=>"Resolved", "description"=>"Call is resolved", "attribute_inherit"=>null, "attribute_list"=>array("workgroup_id"=>OPT_ATT_MANDATORY, "agent_id"=>OPT_ATT_MANDATORY, "resolution"=>OPT_ATT_MANDATORY, "end_date"=>OPT_ATT_MANDATORY,"resolution"=>OPT_ATT_MANDATORY)));
- MetaModel::Init_DefineState("Closed", array("label"=>"Closed", "description"=>"Call is closed", "attribute_inherit"=>null, "attribute_list"=>array("workgroup_id"=>OPT_ATT_READONLY, "agent_id"=>OPT_ATT_READONLY, "resolution"=>OPT_ATT_READONLY, "end_date"=>OPT_ATT_READONLY)));
+ "attribute_list"=>array('name' => OPT_ATT_READONLY, "title"=>OPT_ATT_READONLY, "org_id"=>OPT_ATT_READONLY,"source"=>OPT_ATT_READONLY, "caller_id"=>OPT_ATT_READONLY, "call_description"=>OPT_ATT_READONLY, "creation_date"=>OPT_ATT_READONLY,'end_date' => OPT_ATT_HIDDEN, "workgroup_id"=>OPT_ATT_READONLY, "agent_id"=>OPT_ATT_MUSTCHANGE)));
+ MetaModel::Init_DefineState("WorkInProgress", array("label"=>"Work In Progress", "description"=>"Work is in progress", "attribute_inherit"=>null, "attribute_list"=>array('name' => OPT_ATT_READONLY, 'end_date' => OPT_ATT_HIDDEN, 'last_update' => OPT_ATT_READONLY,
+ "title"=>OPT_ATT_READONLY, "org_id"=>OPT_ATT_READONLY,"source"=>OPT_ATT_READONLY, "caller_id"=>OPT_ATT_READONLY, "call_description"=>OPT_ATT_READONLY, "creation_date"=>OPT_ATT_READONLY, "workgroup_id"=>OPT_ATT_READONLY,
+ "severity"=>OPT_ATT_MANDATORY, "agent_id"=>OPT_ATT_MANDATORY,"action_log"=>OPT_ATT_MUSTPROMPT,"impacted_infra_manual"=>OPT_ATT_MANDATORY, "related_tickets"=>OPT_ATT_MUSTPROMPT)));
+ MetaModel::Init_DefineState("Resolved", array("label"=>"Resolved", "description"=>"Call is resolved", "attribute_inherit"=>null, "attribute_list"=>array('name' => OPT_ATT_READONLY, 'end_date' => OPT_ATT_HIDDEN, 'last_update' => OPT_ATT_READONLY,
+ "title"=>OPT_ATT_READONLY, "org_id"=>OPT_ATT_READONLY, "source"=>OPT_ATT_READONLY,"caller_id"=>OPT_ATT_READONLY, "call_description"=>OPT_ATT_READONLY, "creation_date"=>OPT_ATT_READONLY, "workgroup_id"=>OPT_ATT_READONLY,
+ "severity"=>OPT_ATT_READONLY, "agent_id"=>OPT_ATT_READONLY,"action_log"=>OPT_ATT_READONLY,"impacted_infra_manual"=>OPT_ATT_MANDATORY, "related_tickets"=>OPT_ATT_MUSTPROMPT, "resolution"=>OPT_ATT_MUSTCHANGE)));
+ MetaModel::Init_DefineState("Closed", array("label"=>"Closed", "description"=>"Call is closed", "attribute_inherit"=>null, "attribute_list"=>array('name' => OPT_ATT_READONLY, 'end_date' => OPT_ATT_READONLY, 'last_update' => OPT_ATT_READONLY,"next_update"=>OPT_ATT_READONLY,
+ "title"=>OPT_ATT_READONLY, "org_id"=>OPT_ATT_READONLY,"source"=>OPT_ATT_READONLY, "caller_id"=>OPT_ATT_READONLY, "call_description"=>OPT_ATT_READONLY, "creation_date"=>OPT_ATT_READONLY,"impact"=>OPT_ATT_READONLY,"type"=>OPT_ATT_READONLY, "workgroup_id"=>OPT_ATT_READONLY,
+ "severity"=>OPT_ATT_READONLY, "agent_id"=>OPT_ATT_READONLY,"action_log"=>OPT_ATT_READONLY,"impacted_infra_manual"=>OPT_ATT_READONLY, "related_tickets"=>OPT_ATT_READONLY, "resolution"=>OPT_ATT_READONLY)));
MetaModel::Init_DefineStimulus("ev_assign", new StimulusUserAction(array("label"=>"Assign this call", "description"=>"Assign this call to a group and an agent")));
MetaModel::Init_DefineStimulus("ev_reassign", new StimulusUserAction(array("label"=>"Reassign this call", "description"=>"Reassign this call to a different group and agent")));
@@ -113,12 +119,12 @@ class bizServiceCall extends cmdbAbstractObject
MetaModel::Init_DefineStimulus("ev_resolve", new StimulusUserAction(array("label"=>"Resolve this call", "description"=>"Resolve this call")));
MetaModel::Init_DefineStimulus("ev_close", new StimulusUserAction(array("label"=>"Close this call", "description"=>"Close this call")));
- MetaModel::Init_DefineTransition("New", "ev_assign", array("target_state"=>"Assigned", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("Assigned", "ev_reassign", array("target_state"=>"Assigned", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("Assigned", "ev_start_working", array("target_state"=>"WorkInProgress", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("WorkInProgress", "ev_reassign", array("target_state"=>"Assigned", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("WorkInProgress", "ev_resolve", array("target_state"=>"Resolved", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("Resolved", "ev_close", array("target_state"=>"Closed", "actions"=>array('SetClosureDate'), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("New", "ev_assign", array("target_state"=>"Assigned", "actions"=>array('SetLastUpdate'), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("Assigned", "ev_reassign", array("target_state"=>"Assigned", "actions"=>array('SetLastUpdate'), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("Assigned", "ev_start_working", array("target_state"=>"WorkInProgress", "actions"=>array('SetLastUpdate'), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("WorkInProgress", "ev_reassign", array("target_state"=>"Assigned", "actions"=>array('SetLastUpdate'), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("WorkInProgress", "ev_resolve", array("target_state"=>"Resolved", "actions"=>array('SetLastUpdate'), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("Resolved", "ev_close", array("target_state"=>"Closed", "actions"=>array('SetLastUpdate','SetClosureDate'), "user_restriction"=>null));
}
@@ -147,6 +153,12 @@ class bizServiceCall extends cmdbAbstractObject
return true;
}
+ public function SetLastUpdate($sStimulusCode)
+ {
+ $this->Set('last_update', time());
+ return true;
+ }
+
public function ComputeValues()
{
$iKey = $this->GetKey();
diff --git a/trunk/business/ServiceMgmt.business.php b/trunk/business/ServiceMgmt.business.php
index 11f844a34..68f6f91d0 100644
--- a/trunk/business/ServiceMgmt.business.php
+++ b/trunk/business/ServiceMgmt.business.php
@@ -147,11 +147,11 @@ class bizContract extends cmdbAbstractObject
MetaModel::Init_DefineState("Signed", array("label"=>"Signed", "description"=>"The contract has been signed", "attribute_inherit"=>null,
"attribute_list"=>array( 'name' => OPT_ATT_READONLY,'org_id' => OPT_ATT_READONLY, 'service_id' => OPT_ATT_READONLY,'type' => OPT_ATT_READONLY, 'service_level' => OPT_ATT_MANDATORY , 'cost_unit' => OPT_ATT_MANDATORY , 'cost_freq' => OPT_ATT_MANDATORY , 'cost' => OPT_ATT_MANDATORY, 'currency' => OPT_ATT_MANDATORY)));
MetaModel::Init_DefineState("Production", array("label"=>"Production", "description"=>"The contract is effective in production", "attribute_inherit"=>null,
- "attribute_list"=>array('name' => OPT_ATT_READONLY,'org_id' => OPT_ATT_READONLY, 'service_id' => OPT_ATT_READONLY,'type' => OPT_ATT_READONLY, 'service_level' => OPT_ATT_READONLY , 'cost_unit' => OPT_ATT_READONLY , 'cost_freq' => OPT_ATT_READONLY , 'cost' => OPT_ATT_READONLY, 'currency' => OPT_ATT_READONLY,'move2prod_date' => OPT_ATT_MANDATORY,'end_prod' => OPT_ATT_MANDATORY)));
+ "attribute_list"=>array('name' => OPT_ATT_READONLY,'org_id' => OPT_ATT_READONLY, 'service_id' => OPT_ATT_READONLY,'type' => OPT_ATT_READONLY, 'service_level' => OPT_ATT_READONLY , 'cost_unit' => OPT_ATT_READONLY , 'cost_freq' => OPT_ATT_READONLY , 'cost' => OPT_ATT_READONLY, 'currency' => OPT_ATT_READONLY,'move2prod_date' => OPT_ATT_MUSTPROMPT,'end_prod' => OPT_ATT_MANDATORY)));
MetaModel::Init_DefineState("Finished", array("label"=>"Finished", "description"=>"The contract is terminated", "attribute_inherit"=>null,
"attribute_list"=>array('name' => OPT_ATT_READONLY,'org_id' => OPT_ATT_READONLY, 'service_id' => OPT_ATT_READONLY,'type' => OPT_ATT_READONLY, 'service_level' => OPT_ATT_READONLY , 'cost_unit' => OPT_ATT_READONLY , 'cost_freq' => OPT_ATT_READONLY , 'cost' => OPT_ATT_READONLY, 'currency' => OPT_ATT_READONLY,'move2prod_date' => OPT_ATT_READONLY,'end_prod' => OPT_ATT_READONLY,'team_id' => OPT_ATT_READONLY,'description' => OPT_ATT_READONLY)));
- MetaModel::Init_DefineStimulus("ev_negociate", new StimulusUserAction(array("label"=>"Negociate this contract", "description"=>"This version of the contract is published")));
+ MetaModel::Init_DefineStimulus("ev_negociate", new StimulusUserAction(array("label"=>"Negotiate this contract", "description"=>"This version of the contract is published")));
MetaModel::Init_DefineStimulus("ev_sign", new StimulusUserAction(array("label"=>"Sign this contract", "description"=>"This contract is being signed")));
MetaModel::Init_DefineStimulus("ev_begin", new StimulusUserAction(array("label"=>"Move to production", "description"=>"The contract becomes applicable in production")));
MetaModel::Init_DefineStimulus("ev_terminate", new StimulusUserAction(array("label"=>"Ends this contract", "description"=>"The contract is ending")));
diff --git a/trunk/business/itop.business.class.inc.php b/trunk/business/itop.business.class.inc.php
index ead363a10..a3044f8f0 100644
--- a/trunk/business/itop.business.class.inc.php
+++ b/trunk/business/itop.business.class.inc.php
@@ -797,28 +797,39 @@ class bizCircuit extends logInfra
MetaModel::Init_Params($aParams);
MetaModel::Init_InheritAttributes();
MetaModel::Init_AddAttribute(new AttributeString("speed", array("label"=>"speed", "description"=>"speed of the circuit", "allowed_values"=>null, "sql"=>"speed", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeExternalKey("location_id", array("targetclass"=>"bizLocation", "label"=>"Location ID", "description"=>"Id of the location", "allowed_values"=>null, "sql"=>"location_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeExternalField("location_name", array("label"=>"Location", "description"=>"Name of the location", "allowed_values"=>null, "extkey_attcode"=> 'location_id', "target_attcode"=>"name")));
- MetaModel::Init_AddAttribute(new AttributeExternalKey("interface_id", array("targetclass"=>"bizInterface", "label"=>"Interface Id", "description"=>"id of the interface", "allowed_values"=>null, "sql"=>"interface_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeExternalField("interface_name", array("label"=>"Interface", "description"=>"Name of the interface", "allowed_values"=>null, "extkey_attcode"=> 'interface_id', "target_attcode"=>"name")));
- MetaModel::Init_AddAttribute(new AttributeExternalKey("provider_id", array("targetclass"=>"bizOrganization", "label"=>"Carrier ID", "description"=>"Organization ID of the provider of the Circuit", "allowed_values"=>null, "sql"=>"provider_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeExternalKey("location1_id", array("targetclass"=>"bizLocation", "label"=>"Location 1", "description"=>"Id of the location 1", "allowed_values"=>null, "sql"=>"location1_id", "is_null_allowed"=>false,"on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeExternalField("location1_name", array("label"=>"Location 1", "description"=>"Name of the location", "allowed_values"=>null, "extkey_attcode"=> 'location1_id', "target_attcode"=>"name")));
+ MetaModel::Init_AddAttribute(new AttributeExternalKey("location2_id", array("targetclass"=>"bizLocation", "label"=>"Location 2", "description"=>"Id of the location 2", "allowed_values"=>null, "sql"=>"location2_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_MANUAL,"depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeExternalField("location2_name", array("label"=>"Location 2", "description"=>"Name of the location", "allowed_values"=>null, "extkey_attcode"=> 'location2_id', "target_attcode"=>"name")));
+
+ MetaModel::Init_AddAttribute(new AttributeExternalKey("interface1_id", array("targetclass"=>"bizInterface", "label"=>"Interface 1", "description"=>"id of the interface 1", "allowed_values"=>null, "sql"=>"interface1_id", "is_null_allowed"=>false,"on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeExternalField("interface1_name", array("label"=>"Interface", "description"=>"Name of the interface 1", "allowed_values"=>null, "extkey_attcode"=> 'interface1_id', "target_attcode"=>"name")));
+ MetaModel::Init_AddAttribute(new AttributeExternalField("device1_name", array("label"=>"Device 1", "description"=>"Name of the device 1", "allowed_values"=>null, "extkey_attcode"=> 'interface1_id', "target_attcode"=>"device_name")));
+
+ MetaModel::Init_AddAttribute(new AttributeExternalKey("interface2_id", array("targetclass"=>"bizInterface", "label"=>"Interface 2", "description"=>"id of the interface 2", "allowed_values"=>null, "sql"=>"interface2_id", "is_null_allowed"=>false,"on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeExternalField("interface2_name", array("label"=>"Interface", "description"=>"Name of the interface 2", "allowed_values"=>null, "extkey_attcode"=> 'interface2_id', "target_attcode"=>"name")));
+ MetaModel::Init_AddAttribute(new AttributeExternalField("device2_name", array("label"=>"Interface", "description"=>"Name of the device 2", "allowed_values"=>null, "extkey_attcode"=> 'interface2_id', "target_attcode"=>"device_name")));
+
+ MetaModel::Init_AddAttribute(new AttributeExternalKey("provider_id", array("targetclass"=>"bizOrganization", "label"=>"Carrier ID", "description"=>"Organization ID of the provider of the Circuit", "allowed_values"=>null, "sql"=>"provider_id", "is_null_allowed"=>false,"on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
MetaModel::Init_AddAttribute(new AttributeExternalField("carrier_name", array("label"=>"Carrier", "description"=>"Name of the carrier", "allowed_values"=>null, "extkey_attcode"=> 'provider_id', "target_attcode"=>"name")));
MetaModel::Init_AddAttribute(new AttributeString("carrier_ref", array("label"=>"Carrier reference", "description"=>"reference of the circuit used by the carrier", "allowed_values"=>null, "sql"=>"carrier_ref", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
MetaModel::Init_InheritFilters();
MetaModel::Init_AddFilterFromAttribute("speed");
- MetaModel::Init_AddFilterFromAttribute("location_id");
- MetaModel::Init_AddFilterFromAttribute("location_name");
- MetaModel::Init_AddFilterFromAttribute("interface_id");
+ MetaModel::Init_AddFilterFromAttribute("location1_id");
+ MetaModel::Init_AddFilterFromAttribute("location2_id");
+ MetaModel::Init_AddFilterFromAttribute("interface1_id");
+ MetaModel::Init_AddFilterFromAttribute("interface2_id");
+
MetaModel::Init_AddFilterFromAttribute("provider_id");
MetaModel::Init_AddFilterFromAttribute("carrier_ref");
// Display lists
- MetaModel::Init_SetZListItems('details', array('name', 'status', 'org_id', 'speed', 'provider_id', 'carrier_ref', 'location_id')); // Attributes to be displayed for the complete details
+ MetaModel::Init_SetZListItems('details', array('name', 'status', 'org_id', 'speed', 'location1_id','interface1_id','device1_name','location2_id','interface2_id','device2_name','provider_id', 'carrier_ref')); // Attributes to be displayed for the complete details
MetaModel::Init_SetZListItems('list', array('name', 'status', 'org_id', 'provider_id', 'carrier_ref', 'speed')); // Attributes to be displayed for a list
// Search criteria
- MetaModel::Init_SetZListItems('standard_search', array('name', 'status', 'carrier_ref', 'speed', 'provider_id')); // Criteria of the std search form
- MetaModel::Init_SetZListItems('advanced_search', array('name', 'status', 'carrier_ref', 'speed', 'provider_id')); // Criteria of the advanced search form
+ MetaModel::Init_SetZListItems('standard_search', array('name', 'status', 'location1_id','location2_id','carrier_ref', 'speed', 'provider_id')); // Criteria of the std search form
+ MetaModel::Init_SetZListItems('advanced_search', array('name', 'status', 'location1_id','location2_id','carrier_ref', 'speed', 'provider_id')); // Criteria of the advanced search form
}
public function ComputeValues()
@@ -1013,8 +1024,8 @@ class bizSubnet extends logInfra
);
MetaModel::Init_Params($aParams);
MetaModel::Init_InheritAttributes();
- MetaModel::Init_AddAttribute(new AttributeString("ip", array("label"=>"IP", "description"=>"IP", "allowed_values"=>null, "sql"=>"ip", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("mask", array("label"=>"IP mask", "description"=>"IP mask", "allowed_values"=>null, "sql"=>"mask", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("ip", array("label"=>"IP", "description"=>"IP", "allowed_values"=>null, "sql"=>"ip", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("mask", array("label"=>"IP mask", "description"=>"IP mask", "allowed_values"=>null, "sql"=>"mask", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
MetaModel::Init_InheritFilters();
MetaModel::Init_AddFilterFromAttribute("ip");
@@ -1099,9 +1110,9 @@ class bizDevice extends logInfra
MetaModel::Init_AddAttribute(new AttributeExternalKey("location_id", array("targetclass"=>"bizLocation", "label"=>"Location", "description"=>"where is the located object physically located", "allowed_values"=>null, "sql"=>"location_id", "is_null_allowed"=>false, "on_target_delete"=>DEL_MANUAL, "depends_on"=>array())));
MetaModel::Init_AddAttribute(new AttributeExternalField("location_name", array("label"=>"Location Name", "description"=>"name of the location", "allowed_values"=>null, "extkey_attcode"=> 'location_id', "target_attcode"=>"name")));
MetaModel::Init_AddAttribute(new AttributeExternalField("country", array("label"=>"Country", "description"=>"country where the device is located", "allowed_values"=>null, "extkey_attcode"=> 'location_id', "target_attcode"=>"country")));
- MetaModel::Init_AddAttribute(new AttributeString("brand", array("label"=>"Brand", "description"=>"The manufacturer of the device", "allowed_values"=>null, "sql"=>"brand", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("model", array("label"=>"Model", "description"=>"The model number of the device", "allowed_values"=>null, "sql"=>"model", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("serial_number", array("label"=>"Serial Number", "description"=>"The serial number of the device", "allowed_values"=>null, "sql"=>"serial_number", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("brand", array("label"=>"Brand", "description"=>"The manufacturer of the device", "allowed_values"=>null, "sql"=>"brand", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("model", array("label"=>"Model", "description"=>"The model number of the device", "allowed_values"=>null, "sql"=>"model", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("serial_number", array("label"=>"Serial Number", "description"=>"The serial number of the device", "allowed_values"=>null, "sql"=>"serial_number", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
MetaModel::Init_AddAttribute(new AttributeString("mgmt_ip", array("label"=>"Mgmt IP", "description"=>"Management IP", "allowed_values"=>null, "sql"=>"mgmt_ip", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
MetaModel::Init_InheritFilters();
@@ -1170,11 +1181,11 @@ class bizPC extends bizDevice
MetaModel::Init_Params($aParams);
MetaModel::Init_InheritAttributes();
MetaModel::Init_AddAttribute(new AttributeEnum("type", array("label"=>"Type", "description"=>"Type of computer", "allowed_values"=>new ValueSetEnum("desktop PC,laptop"), "sql"=>"type", "default_value"=>"desktop PC", "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("memory_size", array("label"=>"Memory Size", "description"=>"Size of the memory", "allowed_values"=>null, "sql"=>"memory_size", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("cpu", array("label"=>"CPU", "description"=>"CPU type", "allowed_values"=>null, "sql"=>"cpu_type", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("hdd_size", array("label"=>"HDD Size", "description"=>"Size of the hard drive", "allowed_values"=>null, "sql"=>"hdd_size", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("os_family", array("label"=>"OS Family", "description"=>"Type of operating system", "allowed_values"=>null, "sql"=>"os_family", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("os_version", array("label"=>"OS Version", "description"=>"Detailed version number of the operating system", "allowed_values"=>null, "sql"=>"os_version", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("memory_size", array("label"=>"Memory Size", "description"=>"Size of the memory", "allowed_values"=>null, "sql"=>"memory_size", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("cpu", array("label"=>"CPU", "description"=>"CPU type", "allowed_values"=>null, "sql"=>"cpu_type", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("hdd_size", array("label"=>"HDD Size", "description"=>"Size of the hard drive", "allowed_values"=>null, "sql"=>"hdd_size", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("os_family", array("label"=>"OS Family", "description"=>"Type of operating system", "allowed_values"=>null, "sql"=>"os_family", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("os_version", array("label"=>"OS Version", "description"=>"Detailed version number of the operating system", "allowed_values"=>null, "sql"=>"os_version", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
MetaModel::Init_AddAttribute(new AttributeString("shipment_number", array("label"=>"Shipment Code", "description"=>"Number for tracking shipment", "allowed_values"=>null, "sql"=>"shipment_number", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
MetaModel::Init_AddAttribute(new AttributeString("default_gateway", array("label"=>"Default Gateway", "description"=>"Default Gateway for this device", "allowed_values"=>null, "sql"=>"default_gateway", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
@@ -1263,14 +1274,14 @@ class bizServer extends bizDevice
);
MetaModel::Init_Params($aParams);
MetaModel::Init_InheritAttributes();
- MetaModel::Init_AddAttribute(new AttributeEnum("status", array("label"=>"Status", "description"=>"Status of the server", "allowed_values"=>new ValueSetEnum("In Store,Shipped,Plugged,Production Candidate,In Production,Being Deconfigured,Obsolete"), "sql"=>"status", "default_value"=>"In Store", "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("memory_size", array("label"=>"Memory Size", "description"=>"Size of the memory", "allowed_values"=>null, "sql"=>"memory_size", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("cpu", array("label"=>"CPU type", "description"=>"CPU type", "allowed_values"=>null, "sql"=>"cpu_type", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("number_of_cpus", array("label"=>"Number of CPUs", "description"=>"Number of CPUs", "allowed_values"=>null, "sql"=>"number_of_cpus", "default_value"=>"1", "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("hdd_size", array("label"=>"HDD Size", "description"=>"Size of the hard drive", "allowed_values"=>null, "sql"=>"hdd_size", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("hdd_free_size", array("label"=>"Free HDD Size", "description"=>"Size of the free space on the hard drive(s)", "allowed_values"=>null, "sql"=>"hdd_free_size", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("os_family", array("label"=>"OS Family", "description"=>"Type of operating system", "allowed_values"=>null, "sql"=>"os_family", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("os_version", array("label"=>"OS Version", "description"=>"Detailed version number of the operating system", "allowed_values"=>null, "sql"=>"os_version", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeEnum("status", array("label"=>"Status", "description"=>"Status of the server", "allowed_values"=>new ValueSetEnum("InStore,Shipped,Plugged,ProductionCandidate,InProduction,Being Deconfigured,Obsolete"), "sql"=>"status", "default_value"=>"In Store", "is_null_allowed"=>false, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("memory_size", array("label"=>"Memory Size", "description"=>"Size of the memory", "allowed_values"=>null, "sql"=>"memory_size", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("cpu", array("label"=>"CPU type", "description"=>"CPU type", "allowed_values"=>null, "sql"=>"cpu_type", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("number_of_cpus", array("label"=>"Number of CPUs", "description"=>"Number of CPUs", "allowed_values"=>null, "sql"=>"number_of_cpus", "default_value"=>"1", "is_null_allowed"=>true, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("hdd_size", array("label"=>"HDD Size", "description"=>"Size of the hard drive", "allowed_values"=>null, "sql"=>"hdd_size", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("hdd_free_size", array("label"=>"Free HDD Size", "description"=>"Size of the free space on the hard drive(s)", "allowed_values"=>null, "sql"=>"hdd_free_size", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("os_family", array("label"=>"OS Family", "description"=>"Type of operating system", "allowed_values"=>null, "sql"=>"os_family", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("os_version", array("label"=>"OS Version", "description"=>"Detailed version number of the operating system", "allowed_values"=>null, "sql"=>"os_version", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
MetaModel::Init_AddAttribute(new AttributeString("shipment_number", array("label"=>"Shipment number", "description"=>"Number for tracking shipment", "allowed_values"=>null, "sql"=>"shipment_number", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
MetaModel::Init_AddAttribute(new AttributeString("default_gateway", array("label"=>"Default Gateway", "description"=>"Default Gateway for this device", "allowed_values"=>null, "sql"=>"default_gateway", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
@@ -1285,17 +1296,17 @@ class bizServer extends bizDevice
// Life cycle
- MetaModel::Init_DefineState("In Store", array("label"=>"InStore", "description"=>"Device in store", "attribute_inherit"=>null,
+ MetaModel::Init_DefineState("InStore", array("label"=>"InStore", "description"=>"Device in store", "attribute_inherit"=>null,
"attribute_list"=>array()));
MetaModel::Init_DefineState("Shipped", array("label"=>"Shipped", "description"=>"The device had been shipped to future location", "attribute_inherit"=>null,
"attribute_list"=>array("location_id"=>OPT_ATT_MANDATORY,"serial_number"=>OPT_ATT_MANDATORY,"shipment_number"=>OPT_ATT_MANDATORY)));
MetaModel::Init_DefineState("Plugged", array("label"=>"Plugged", "description"=>"The device is connected to the network", "attribute_inherit"=>null,
"attribute_list"=>array("location_id"=>OPT_ATT_MANDATORY,"mgmt_ip"=>OPT_ATT_MANDATORY,"name"=>OPT_ATT_MANDATORY)));
- MetaModel::Init_DefineState("Production Candidate", array("label"=>"Pre-Production", "description"=>"The device is ready to be move to production", "attribute_inherit"=>null,
+ MetaModel::Init_DefineState("ProductionCandidate", array("label"=>"Pre-Production", "description"=>"The device is ready to be move to production", "attribute_inherit"=>null,
"attribute_list"=>array()));
- MetaModel::Init_DefineState("In Production", array("label"=>"Production", "description"=>"The device is on production", "attribute_inherit"=>null,
+ MetaModel::Init_DefineState("InProduction", array("label"=>"Production", "description"=>"The device is on production", "attribute_inherit"=>null,
"attribute_list"=>array()));
- MetaModel::Init_DefineState("Being Deconfigured", array("label"=>"BeingDeconfigured", "description"=>"The device is about to be removed from is current location", "attribute_inherit"=>null,
+ MetaModel::Init_DefineState("BeingDeconfigured", array("label"=>"BeingDeconfigured", "description"=>"The device is about to be removed from is current location", "attribute_inherit"=>null,
"attribute_list"=>array()));
MetaModel::Init_DefineState("Obsolete", array("label"=>"Obsolete", "description"=>"The device is no more used", "attribute_inherit"=>null,
"attribute_list"=>array()));
@@ -1311,22 +1322,22 @@ class bizServer extends bizDevice
MetaModel::Init_DefineStimulus("ev_obsolete", new StimulusUserAction(array("label"=>"Obsolete", "description"=>"The server is no more used")));
MetaModel::Init_DefineStimulus("ev_recycle", new StimulusUserAction(array("label"=>"Recycle this server", "description"=>"The server is move back to deconfiguration")));
- MetaModel::Init_DefineTransition("In Store", "ev_ship", array("target_state"=>"Shipped", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("In Store", "ev_plug", array("target_state"=>"Plugged", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("Shipped", "ev_store", array("target_state"=>"In Store", "actions"=>array(), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("InStore", "ev_ship", array("target_state"=>"Shipped", "actions"=>array(), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("InStore", "ev_plug", array("target_state"=>"Plugged", "actions"=>array(), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("Shipped", "ev_store", array("target_state"=>"InStore", "actions"=>array(), "user_restriction"=>null));
MetaModel::Init_DefineTransition("Shipped", "ev_plug", array("target_state"=>"Plugged", "actions"=>array(), "user_restriction"=>null));
MetaModel::Init_DefineTransition("Plugged", "ev_ship", array("target_state"=>"Shipped", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("Plugged", "ev_store", array("target_state"=>"In Store", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("Plugged", "ev_configuration_finished", array("target_state"=>"Production Candidate", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("Production Candidate", "ev_val_failed", array("target_state"=>"Plugged", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("Production Candidate", "ev_mtp", array("target_state"=>"In Production", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("In Production", "ev_obsolete", array("target_state"=>"Obsolete", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("In Production", "ev_decommission", array("target_state"=>"Being Deconfigured", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("Being Deconfigured", "ev_ship", array("target_state"=>"Shipped", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("Being Deconfigured", "ev_plug", array("target_state"=>"Plugged", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("Being Deconfigured", "ev_store", array("target_state"=>"In Store", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("Being Deconfigured", "ev_obsolete", array("target_state"=>"Obsolete", "actions"=>array(), "user_restriction"=>null));
- MetaModel::Init_DefineTransition("Obsolete", "ev_recycle", array("target_state"=>"Being Deconfigured", "actions"=>array(), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("Plugged", "ev_store", array("target_state"=>"InStore", "actions"=>array(), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("Plugged", "ev_configuration_finished", array("target_state"=>"ProductionCandidate", "actions"=>array(), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("ProductionCandidate", "ev_val_failed", array("target_state"=>"Plugged", "actions"=>array(), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("ProductionCandidate", "ev_mtp", array("target_state"=>"InProduction", "actions"=>array(), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("InProduction", "ev_obsolete", array("target_state"=>"Obsolete", "actions"=>array(), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("InProduction", "ev_decommission", array("target_state"=>"BeingDeconfigured", "actions"=>array(), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("BeingDeconfigured", "ev_ship", array("target_state"=>"Shipped", "actions"=>array(), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("BeingDeconfigured", "ev_plug", array("target_state"=>"Plugged", "actions"=>array(), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("BeingDeconfigured", "ev_store", array("target_state"=>"InStore", "actions"=>array(), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("BeingDeconfigured", "ev_obsolete", array("target_state"=>"Obsolete", "actions"=>array(), "user_restriction"=>null));
+ MetaModel::Init_DefineTransition("Obsolete", "ev_recycle", array("target_state"=>"BeingDeconfigured", "actions"=>array(), "user_restriction"=>null));
@@ -1439,11 +1450,11 @@ class bizNetworkDevice extends bizDevice
MetaModel::Init_InheritAttributes();
MetaModel::Init_AddAttribute(new AttributeEnum("type", array("label"=>"Type", "description"=>"Type of device", "allowed_values"=>new ValueSetEnum("switch,router,firewall,load balancer,hub,WAN accelerator"), "sql"=>"type", "default_value"=>"switch", "is_null_allowed"=>false, "depends_on"=>array())));
MetaModel::Init_AddAttribute(new AttributeString("default_gateway", array("label"=>"Default Gateway", "description"=>"Default Gateway for this device", "allowed_values"=>null, "sql"=>"default_gateway", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("ios_version", array("label"=>"IOS version", "description"=>"IOS (software) version", "allowed_values"=>null, "sql"=>"ios_version", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("ios_version", array("label"=>"IOS version", "description"=>"IOS (software) version", "allowed_values"=>null, "sql"=>"ios_version", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
MetaModel::Init_AddAttribute(new AttributeString("memory", array("label"=>"Memory", "description"=>"Memory description", "allowed_values"=>null, "sql"=>"memory", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("snmp_read", array("label"=>"SNMP Community (Read)", "description"=>"SNMP Read Community String", "allowed_values"=>null, "sql"=>"snmp_read", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
- MetaModel::Init_AddAttribute(new AttributeString("snmp_write", array("label"=>"SNMP Community (Write)", "description"=>"SNMP Write Community String", "allowed_values"=>null, "sql"=>"snmp_write", "default_value"=>"", "is_null_allowed"=>false, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("snmp_read", array("label"=>"SNMP Community (Read)", "description"=>"SNMP Read Community String", "allowed_values"=>null, "sql"=>"snmp_read", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
+ MetaModel::Init_AddAttribute(new AttributeString("snmp_write", array("label"=>"SNMP Community (Write)", "description"=>"SNMP Write Community String", "allowed_values"=>null, "sql"=>"snmp_write", "default_value"=>"", "is_null_allowed"=>true, "depends_on"=>array())));
MetaModel::Init_InheritFilters();
MetaModel::Init_AddFilterFromAttribute("type");
diff --git a/trunk/business/templates/Circuits.html b/trunk/business/templates/Circuits.html
index 3af174814..a903e792b 100644
--- a/trunk/business/templates/Circuits.html
+++ b/trunk/business/templates/Circuits.html
@@ -6,7 +6,4 @@
$class$: pkey = $pkey$
-
- bizInterface: PKEY IS interface_id IN (bizCircuit: pkey = $pkey$)
-
diff --git a/trunk/business/templates/application.html b/trunk/business/templates/application.html
index eeb4afd9b..a4a1fd0d2 100644
--- a/trunk/business/templates/application.html
+++ b/trunk/business/templates/application.html
@@ -7,10 +7,10 @@
SELECT bizApplication WHERE id = $pkey$
- SELECT lnkClientServer WHERE server_id = $pkey$
+ SELECT lnkClientServer WHERE server_id = $pkey$
- SELECT lnkClientServer WHERE client_id = $pkey$
+ SELECT lnkClientServer WHERE client_id = $pkey$
lnkInfraTicket: infra_id = $pkey$
@@ -20,10 +20,10 @@
- SELECT lnkInfraContract WHERE infra_id = $pkey$
+ SELECT lnkInfraContract WHERE infra_id = $pkey$
- SELECT lnkInfraGrouping WHERE infra_id = $pkey$
+ SELECT lnkInfraGrouping WHERE infra_id = $pkey$
diff --git a/trunk/business/templates/change.html b/trunk/business/templates/change.html
index b5ddf60ff..01c67ff61 100644
--- a/trunk/business/templates/change.html
+++ b/trunk/business/templates/change.html
@@ -7,10 +7,10 @@
SELECT $class$ WHERE id = $pkey$
- SELECT lnkInfraChangeTicket WHERE ticket_id = $pkey$
+ SELECT lnkInfraChangeTicket WHERE ticket_id = $pkey$
- SELECT lnkContactChange WHERE change_id = $pkey$
+ SELECT lnkContactChange WHERE change_id = $pkey$
diff --git a/trunk/business/templates/contract.html b/trunk/business/templates/contract.html
index 326d527d9..03eaecd53 100644
--- a/trunk/business/templates/contract.html
+++ b/trunk/business/templates/contract.html
@@ -7,12 +7,12 @@
SELECT bizContract WHERE id = $pkey$
- SELECT lnkInfraContract WHERE contract_id = $pkey$
+ SELECT lnkInfraContract WHERE contract_id = $pkey$
- SELECT lnkContactContract WHERE contract_id = $pkey$
+ SELECT lnkContactContract WHERE contract_id = $pkey$
- SELECT lnkDocumentContract WHERE contract_id = $pkey$
+ SELECT lnkDocumentContract WHERE contract_id = $pkey$
diff --git a/trunk/business/templates/group.html b/trunk/business/templates/group.html
index 7a97a9d0f..c7d450eb3 100644
--- a/trunk/business/templates/group.html
+++ b/trunk/business/templates/group.html
@@ -7,10 +7,10 @@
SELECT bizInfraGroup WHERE id = $pkey$
- SELECT lnkInfraGrouping WHERE infra_group_id = $pkey$
+ SELECT lnkInfraGrouping WHERE infra_group_id = $pkey$
- SELECT lnkContactRealObject WHERE object_id = $pkey$
+ SELECT lnkContactRealObject WHERE object_id = $pkey$
diff --git a/trunk/business/templates/interface.html b/trunk/business/templates/interface.html
index 1911d01df..26e5a58d3 100644
--- a/trunk/business/templates/interface.html
+++ b/trunk/business/templates/interface.html
@@ -6,11 +6,8 @@
SELECT bizInterface WHERE id = $pkey$
-
- SELECT bizInterface WHERE if_connected_id = $pkey$
-
- SELECT lnkInfraGrouping WHERE infra_id = $pkey$
+ SELECT lnkInfraGrouping WHERE infra_id = $pkey$
diff --git a/trunk/business/templates/knownError.html b/trunk/business/templates/knownError.html
index 45977dcdc..99e0ce0de 100644
--- a/trunk/business/templates/knownError.html
+++ b/trunk/business/templates/knownError.html
@@ -6,6 +6,6 @@
SELECT bizKnownError WHERE id = $pkey$
- SELECT lnkInfraError WHERE error_id = $pkey$
+ SELECT lnkInfraError WHERE error_id = $pkey$
diff --git a/trunk/business/templates/location.html b/trunk/business/templates/location.html
index 82f8c4377..14d3f9562 100644
--- a/trunk/business/templates/location.html
+++ b/trunk/business/templates/location.html
@@ -1,25 +1,25 @@
-bizLocation: pkey = $pkey$
+SELECT bizLocation WHERE id = $pkey$
- bizContact: location_id = $pkey$
+ SELECT bizContact WHERE location_id = $pkey$
- bizServer: location_id = $pkey$
+ SELECT bizServer WHERE location_id = $pkey$
- bizPC: location_id = $pkey$
+ SELECT bizPC WHERE location_id = $pkey$
- bizNetworkDevice: location_id = $pkey$
+ SELECT bizNetworkDevice WHERE location_id = $pkey$
- lnkDocumentRealObject: object_id = $pkey$
+ SELECT lnkDocumentRealObject WHERE object_id = $pkey$
diff --git a/trunk/business/templates/network.device.html b/trunk/business/templates/network.device.html
index 56f9000a2..f4c5bf4f1 100644
--- a/trunk/business/templates/network.device.html
+++ b/trunk/business/templates/network.device.html
@@ -10,7 +10,7 @@
SELECT bizInterface WHERE device_id = $pkey$
- SELECT lnkContactInfra WHERE infra_id = $pkey$
+ SELECT lnkContactInfra WHERE infra_id = $pkey$
bizIncidentTicket:PKEY IS ticket_id IN (lnkInfraTicket: infra_id = $pkey$)
@@ -19,10 +19,10 @@
bizChangeTicket: PKEY IS ticket_id IN (lnkInfraChangeTicket: infra_id = $pkey$)
- SELECT lnkInfraGrouping WHERE infra_id = $pkey$
+ SELECT lnkInfraGrouping WHERE infra_id = $pkey$
- SELECT lnkDocumentRealObject WHERE object_id = $pkey$
+ SELECT lnkDocumentRealObject WHERE object_id = $pkey$
diff --git a/trunk/business/templates/pc.html b/trunk/business/templates/pc.html
index fcb8427b9..7c722e454 100644
--- a/trunk/business/templates/pc.html
+++ b/trunk/business/templates/pc.html
@@ -22,9 +22,9 @@
bizIncidentTicket: PKEY IS ticket_id IN (lnkInfraTicket: infra_id = $pkey$)
- SELECT lnkInfraGrouping WHERE infra_id = $pkey$
+ SELECT lnkInfraGrouping WHERE infra_id = $pkey$
- SELECT lnkDocumentRealObject WHERE object_id = $pkey$
+ SELECT lnkDocumentRealObject WHERE object_id = $pkey$
diff --git a/trunk/business/templates/person.html b/trunk/business/templates/person.html
index 15b519fc9..cb853e88c 100644
--- a/trunk/business/templates/person.html
+++ b/trunk/business/templates/person.html
@@ -7,7 +7,7 @@
SELECT bizPerson WHERE id = $pkey$
- SELECT lnkContactTeam WHERE contact_id = $pkey$
+ SELECT lnkContactTeam WHERE contact_id = $pkey$
SELECT lnkContactRealObject WHERE contact_id = $pkey$
@@ -17,6 +17,6 @@
- SELECT lnkDocumentRealObject WHERE object_id = $pkey$
+ SELECT lnkDocumentRealObject WHERE object_id = $pkey$
diff --git a/trunk/business/templates/server.html b/trunk/business/templates/server.html
index 30597b06d..7244c88b4 100644
--- a/trunk/business/templates/server.html
+++ b/trunk/business/templates/server.html
@@ -25,10 +25,10 @@
bizChangeTicket: PKEY IS ticket_id IN (lnkInfraChangeTicket: infra_id = $pkey$)
- SELECT lnkInfraGrouping WHERE infra_id = $pkey$
+ SELECT lnkInfraGrouping WHERE infra_id = $pkey$
- SELECT lnkDocumentRealObject WHERE object_id = $pkey$
+ SELECT lnkDocumentRealObject WHERE object_id = $pkey$
diff --git a/trunk/business/templates/serviceCall.html b/trunk/business/templates/serviceCall.html
index 21b1aa56e..f1ede4982 100644
--- a/trunk/business/templates/serviceCall.html
+++ b/trunk/business/templates/serviceCall.html
@@ -7,7 +7,7 @@
SELECT $class$ WHERE id = $pkey$
- SELECT lnkInfraCall WHERE call_id = $pkey$
+ SELECT lnkInfraCall WHERE call_id = $pkey$
SELECT lnkCallTicket WHERE call_id = $pkey$
diff --git a/trunk/business/templates/team.html b/trunk/business/templates/team.html
index 5a0edcf37..d48b8aefe 100644
--- a/trunk/business/templates/team.html
+++ b/trunk/business/templates/team.html
@@ -7,16 +7,16 @@
SELECT $class$ WHERE id = $pkey$
- SELECT lnkContactTeam WHERE team_id=$pkey$
+ SELECT lnkContactTeam WHERE team_id=$pkey$
- SELECT lnkContactInfra WHERE contact_id = $pkey$
+ SELECT lnkContactInfra WHERE contact_id = $pkey$
SELECT bizWorkgroup WHERE team_id = $pkey$
- SELECT lnkDocumentRealObject WHERE object_id = $pkey$
+ SELECT lnkDocumentRealObject WHERE object_id = $pkey$
diff --git a/trunk/setup/data/01.organizations.xml b/trunk/setup/data/01.organizations.xml
index 2e0eb1c5b..9c43f85be 100644
--- a/trunk/setup/data/01.organizations.xml
+++ b/trunk/setup/data/01.organizations.xml
@@ -1,15 +1,27 @@
-
+
Demo
MCO
implementation
-3
+2
-
+
+France Telecom
+FT
+production
+0
+
+
+My Company/Department
+SOMECODE
+implementation
+0
+
+
Oracle
ORA
production
-6
+3
\ No newline at end of file
diff --git a/trunk/setup/data/02.locations.xml b/trunk/setup/data/02.locations.xml
index ddfdbf4cf..b77dda2ca 100644
--- a/trunk/setup/data/02.locations.xml
+++ b/trunk/setup/data/02.locations.xml
@@ -1,22 +1,22 @@
-
+
Grenoble
production
-3
+2
high
5 Avenue de la Poste
France
-1
+3
-
+
Paris
implementation
-3
+2
high
-5 rue de la Paroisse
+5 rue de la Paroisse
15eme arrondissement
France
-1
+3
\ No newline at end of file
diff --git a/trunk/setup/data/03.persons.xml b/trunk/setup/data/03.persons.xml
index 7cc42e9cc..8d4ea35ad 100644
--- a/trunk/setup/data/03.persons.xml
+++ b/trunk/setup/data/03.persons.xml
@@ -1,33 +1,53 @@
-
-Verne
+
+Dali
available
-3
-jules.verne@gmail.com
+2
+salvador.dali@combodo.com
-29
-Jules
+3
+Salvador
-
+
Dumas
available
-3
+2
alexandre.dumas@gmail.com
-1
+3
Dumas
-
-Hugo
+
+Greg
available
3
+gre.bob@oracle.com
+
+0
+bob
+
+
+
+Hugo
+available
+2
victor.hugo@gmail.com
33172382223
-1
+3
Victor
e12345
-
+
+Verne
+available
+2
+jules.verne@gmail.com
+
+2
+Jules
+
+
+
\ No newline at end of file
diff --git a/trunk/setup/data/04.teams.xml b/trunk/setup/data/04.teams.xml
index 7773a127e..f9f64f1c1 100644
--- a/trunk/setup/data/04.teams.xml
+++ b/trunk/setup/data/04.teams.xml
@@ -1,19 +1,19 @@
-
+
Application support
implementation
-3
+2
application@mecanorama.com
33456456788
-29
+2
ITOP admin team
production
-3
+2
combodo@gmail.com
33123453612
-1
+3
\ No newline at end of file
diff --git a/trunk/setup/data/05.pcs.xml b/trunk/setup/data/05.pcs.xml
index 4af8e9b8a..3af899ede 100644
--- a/trunk/setup/data/05.pcs.xml
+++ b/trunk/setup/data/05.pcs.xml
@@ -1,14 +1,15 @@
-
+
PC01
production
-3
+2
high
-1
+3
Compaq
nc6005
+10.22.32.14
desktop PC
2048
Celeron 2x 1.6Ghz
@@ -16,37 +17,18 @@
Windows
XP
-10.22.32.14
10.22.31.1
-
-PC02
-production
-3
-high
-1
-Compaq
-nc6000
-
-desktop PC
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-XP
-
-10.22.32.15
-10.22.31.1
-
-
+
PC03
production
-3
+2
high
-1
+3
Compaq
nc6000
+10.22.32.16
desktop PC
2048
Pentium Dual Core 1.8Ghz
@@ -54,18 +36,18 @@
Windows
XP
-10.22.32.16
10.22.31.1
-
+
PC04
production
-3
+2
high
-1
+3
Compaq
nc6000
+10.22.32.17
desktop PC
2048
Pentium Dual Core 1.8Ghz
@@ -73,18 +55,18 @@
Windows
XP
-10.22.32.17
10.22.31.1
-
+
PC05
production
-3
+2
high
-1
+3
Compaq
nc6000
+10.22.32.18
desktop PC
2048
Pentium Dual Core 1.8Ghz
@@ -92,18 +74,18 @@
Windows
XP
-10.22.32.18
10.22.31.1
-
+
PC06
production
-3
+2
high
-1
+3
Compaq
nc6000
+10.22.32.19
desktop PC
2048
Pentium Dual Core 1.8Ghz
@@ -111,18 +93,18 @@
Windows
XP
-10.22.32.19
10.22.31.1
-
+
PC07
production
-3
+2
high
-1
+3
Compaq
nc6000
+10.22.32.20
desktop PC
2048
Pentium Dual Core 1.8Ghz
@@ -130,18 +112,18 @@
Windows
XP
-10.22.32.20
10.22.31.1
-
+
PC08
production
-3
+2
high
-1
+3
Compaq
nc6000
+10.22.32.21
desktop PC
2048
Pentium Dual Core 1.8Ghz
@@ -149,18 +131,18 @@
Windows
XP
-10.22.32.21
10.22.31.1
-
+
PC09
production
-3
+2
high
-1
+3
Compaq
nc6000
+10.22.32.22
desktop PC
2048
Pentium Dual Core 1.8Ghz
@@ -168,18 +150,18 @@
Windows
XP
-10.22.32.22
10.22.31.1
-
+
PC10
production
-3
+2
high
-1
+3
Compaq
nc6000
+10.22.32.23
desktop PC
2048
Pentium Dual Core 1.8Ghz
@@ -187,18 +169,18 @@
Windows
XP
-10.22.32.23
10.22.31.1
-
+
PC11
production
-3
+2
high
-1
+3
Compaq
nc6000
+10.22.32.24
desktop PC
2048
Pentium Dual Core 1.8Ghz
@@ -206,18 +188,18 @@
Windows
XP
-10.22.32.24
10.22.31.1
-
+
PC12
production
-3
+2
high
-1
+3
Compaq
nc6008
+10.22.32.25
desktop PC
2048
Celeron 2x 1.6Ghz
@@ -225,417 +207,417 @@
Windows
XP
-10.22.32.25
+10.22.31.1
+
+
+PC13
+production
+2
+high
+3
+Compaq
+nc6000
+
+10.22.32.26
+desktop PC
+2048
+Celeron 2x 1.6Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC14
+production
+2
+high
+3
+Compaq
+nc6000
+
+10.22.32.27
+desktop PC
+2048
+Celeron 2x 1.6Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC15
+production
+2
+high
+3
+Compaq
+nc6000
+
+10.22.32.28
+desktop PC
+2048
+Celeron 2x 1.6Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC16
+production
+2
+high
+3
+Compaq
+nc6000
+
+10.22.32.29
+desktop PC
+2048
+Celeron 2x 1.6Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC17
+production
+2
+high
+3
+Compaq
+nc6000
+
+10.22.32.30
+desktop PC
+2048
+Celeron 2x 1.6Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC18
+production
+2
+high
+3
+Compaq
+nc6000
+
+10.22.32.31
+desktop PC
+2048
+Celeron 2x 1.6Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC19
+production
+2
+high
+3
+Compaq
+nc6000
+
+10.22.32.32
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC20
+production
+2
+high
+3
+Compaq
+nc6000
+
+10.22.32.33
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC21
+production
+2
+high
+3
+Compaq
+nc6000
+
+10.22.32.34
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC22
+production
+2
+high
+3
+Compaq
+nc6000
+
+10.22.32.35
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC23
+production
+2
+medium
+3
+Compaq
+nc6000
+
+10.22.32.36
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC24
+production
+2
+medium
+3
+Dell
+Studio 15 laptop
+
+10.22.32.37
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC25
+production
+2
+medium
+3
+Dell
+Studio 15 laptop
+
+10.22.32.38
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC26
+production
+2
+medium
+3
+Dell
+Studio 15 laptop
+
+10.22.32.39
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC27
+production
+2
+medium
+3
+Dell
+Studio 15 laptop
+
+10.22.32.40
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC28
+production
+2
+medium
+3
+Dell
+Studio 15 laptop
+
+10.22.32.41
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC29
+production
+2
+medium
+3
+Dell
+Studio 15 laptop
+
+10.22.32.42
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC30
+production
+2
+medium
+3
+Dell
+Studio 15 laptop
+
+10.22.32.43
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.31.1
+
+
+PC31
+production
+2
+medium
+3
+Dell
+Studio 15 laptop
+
+10.22.32.44
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
10.22.31.1
-PC13
+PC32
production
-3
-high
-1
-Compaq
-nc6000
+2
+medium
+3
+Dell
+Studio 15 laptop
-desktop PC
+10.22.32.45
+laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
XP
-10.22.32.26
10.22.31.1
-PC14
+PC33
production
-3
-high
-1
-Compaq
-nc6000
+2
+medium
+3
+Dell
+Studio 15 laptop
-desktop PC
+10.22.32.46
+laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
XP
-10.22.32.27
10.22.31.1
-PC15
-production
-3
-high
-1
-Compaq
-nc6000
-
-desktop PC
-2048
-Celeron 2x 1.6Ghz
-60Gb
-Windows
-XP
-
-10.22.32.28
-10.22.31.1
-
-
-PC16
-production
-3
-high
-1
-Compaq
-nc6000
-
-desktop PC
-2048
-Celeron 2x 1.6Ghz
-60Gb
-Windows
-XP
-
-10.22.32.29
-10.22.31.1
-
-
-PC17
-production
-3
-high
-1
-Compaq
-nc6000
-
-desktop PC
-2048
-Celeron 2x 1.6Ghz
-60Gb
-Windows
-XP
-
-10.22.32.30
-10.22.31.1
-
-
-PC18
-production
-3
-high
-1
-Compaq
-nc6000
-
-desktop PC
-2048
-Celeron 2x 1.6Ghz
-60Gb
-Windows
-XP
-
-10.22.32.31
-10.22.31.1
-
-
-PC19
-production
-3
-high
-1
-Compaq
-nc6000
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-XP
-
-10.22.32.32
-10.22.31.1
-
-
-PC20
-production
-3
-high
-1
-Compaq
-nc6000
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-XP
-
-10.22.32.33
-10.22.31.1
-
-
-PC21
-production
-3
-high
-1
-Compaq
-nc6000
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-XP
-
-10.22.32.34
-10.22.31.1
-
-
-PC22
-production
-3
-high
-1
-Compaq
-nc6000
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-XP
-
-10.22.32.35
-10.22.31.1
-
-
-PC23
-production
-3
-medium
-1
-Compaq
-nc6000
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-XP
-
-10.22.32.36
-10.22.31.1
-
-
-PC24
-production
-3
-medium
-1
-Dell
-Studio 15 laptop
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-XP
-
-10.22.32.37
-10.22.31.1
-
-
-PC25
-production
-3
-medium
-1
-Dell
-Studio 15 laptop
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-XP
-
-10.22.32.38
-10.22.31.1
-
-
-PC26
-production
-3
-medium
-1
-Dell
-Studio 15 laptop
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-XP
-
-10.22.32.39
-10.22.31.1
-
-
-PC27
-production
-3
-medium
-1
-Dell
-Studio 15 laptop
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-XP
-
-10.22.32.40
-10.22.31.1
-
-
-PC28
-production
-3
-medium
-1
-Dell
-Studio 15 laptop
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-XP
-
-10.22.32.41
-10.22.31.1
-
-
-PC29
-production
-3
-medium
-1
-Dell
-Studio 15 laptop
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-XP
-
-10.22.32.42
-10.22.31.1
-
-
-PC30
-production
-3
-medium
-1
-Dell
-Studio 15 laptop
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-XP
-
-10.22.32.43
-10.22.31.1
-
-
-PC31
-production
-3
-medium
-1
-Dell
-Studio 15 laptop
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-XP
-
-10.22.32.44
-10.22.31.1
-
-
-PC32
-production
-3
-medium
-1
-Dell
-Studio 15 laptop
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-XP
-
-10.22.32.45
-10.22.31.1
-
-
-PC33
-production
-3
-medium
-1
-Dell
-Studio 15 laptop
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-XP
-
-10.22.32.46
-10.22.31.1
-
-
PC34
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.5
laptop
2048
Pentium Dual Core 1.8Ghz
@@ -643,265 +625,626 @@
Windows
XP
-10.22.30.5
+10.22.30.1
+
+
+PC35
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.6
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC36
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.7
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC37
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.8
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC38
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.9
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC39
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.10
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC40
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.11
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC41
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.12
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC42
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.13
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC43
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.14
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC44
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.15
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC45
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.16
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC46
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.17
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC47
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.18
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC48
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.19
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC49
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.20
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC50
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.21
+laptop
+2048
+Pentium Dual Core 1.8Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC5000
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.33
+laptop
+2048
+Celeron 2x 1.6Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC51
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.22
+laptop
+2048
+Celeron 2x 1.6Ghz
+60Gb
+Windows
+XP
+
+10.22.30.1
+
+
+PC52
+production
+2
+medium
+2
+Dell
+Studio 15 laptop
+
+10.22.30.23
+laptop
+2048
+Celeron 2x 1.6Ghz
+60Gb
+Windows
+XP
+
10.22.30.1
-PC35
+PC53
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.24
laptop
2048
-Pentium Dual Core 1.8Ghz
+Celeron 2x 1.6Ghz
60Gb
Windows
XP
-10.22.30.6
10.22.30.1
-PC36
+PC54
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.25
laptop
2048
-Pentium Dual Core 1.8Ghz
+Celeron 2x 1.6Ghz
60Gb
Windows
XP
-10.22.30.7
10.22.30.1
-PC37
+PC55
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.26
laptop
2048
-Pentium Dual Core 1.8Ghz
+Celeron 2x 1.6Ghz
60Gb
Windows
XP
-10.22.30.8
10.22.30.1
-PC38
+PC56
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.27
laptop
2048
-Pentium Dual Core 1.8Ghz
+Celeron 2x 1.6Ghz
60Gb
Windows
XP
-10.22.30.9
10.22.30.1
-PC39
+PC57
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.28
laptop
2048
-Pentium Dual Core 1.8Ghz
+Celeron 2x 1.6Ghz
60Gb
Windows
XP
-10.22.30.10
10.22.30.1
-PC40
+PC58
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.29
laptop
2048
-Pentium Dual Core 1.8Ghz
+Celeron 2x 1.6Ghz
60Gb
Windows
XP
-10.22.30.11
10.22.30.1
-PC41
+PC59
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.30
laptop
2048
-Pentium Dual Core 1.8Ghz
+Celeron 2x 1.6Ghz
60Gb
Windows
XP
-10.22.30.12
10.22.30.1
-PC42
+PC60
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.31
laptop
2048
-Pentium Dual Core 1.8Ghz
+Celeron 2x 1.6Ghz
60Gb
Windows
XP
-10.22.30.13
10.22.30.1
-PC43
+PC61
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.32
laptop
2048
-Pentium Dual Core 1.8Ghz
+Celeron 2x 1.6Ghz
60Gb
Windows
XP
-10.22.30.14
10.22.30.1
-PC44
+PC62
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.33
laptop
2048
-Pentium Dual Core 1.8Ghz
+Celeron 2x 1.6Ghz
60Gb
Windows
XP
-10.22.30.15
10.22.30.1
-PC45
+PC63
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.34
laptop
2048
-Pentium Dual Core 1.8Ghz
+Celeron 2x 1.6Ghz
60Gb
Windows
XP
-10.22.30.16
10.22.30.1
-PC46
+PC64
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.35
laptop
2048
-Pentium Dual Core 1.8Ghz
+Celeron 2x 1.6Ghz
60Gb
Windows
XP
-10.22.30.17
10.22.30.1
-PC47
+PC65
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.36
laptop
2048
-Pentium Dual Core 1.8Ghz
+Celeron 2x 1.6Ghz
60Gb
Windows
XP
-10.22.30.18
10.22.30.1
-PC48
+PC66
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.37
laptop
2048
Pentium Dual Core 1.8Ghz
@@ -909,18 +1252,18 @@
Windows
XP
-10.22.30.19
10.22.30.1
-PC49
+PC67
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.38
laptop
2048
Pentium Dual Core 1.8Ghz
@@ -928,18 +1271,18 @@
Windows
XP
-10.22.30.20
10.22.30.1
-PC50
+PC68
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.39
laptop
2048
Pentium Dual Core 1.8Ghz
@@ -947,911 +1290,550 @@
Windows
XP
-10.22.30.21
-10.22.30.1
-
-
-PC5000
-production
-3
-medium
-29
-Dell
-Studio 15 laptop
-
-laptop
-2048
-Celeron 2x 1.6Ghz
-60Gb
-Windows
-XP
-
-10.22.30.33
10.22.30.1
-PC51
+PC69
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.40
laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
XP
-10.22.30.22
10.22.30.1
-PC52
+PC70
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.41
laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
XP
-10.22.30.23
10.22.30.1
-PC53
+PC71
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.42
laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
XP
-10.22.30.24
10.22.30.1
-PC54
+PC72
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.43
laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
XP
-10.22.30.25
10.22.30.1
-PC55
+PC73
production
-3
+2
medium
-29
+2
Dell
Studio 15 laptop
+10.22.30.44
laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
XP
-10.22.30.26
10.22.30.1
-PC56
+PC74
production
-3
-medium
-29
+2
+high
+2
Dell
Studio 15 laptop
+10.22.30.45
laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
XP
-10.22.30.27
10.22.30.1
-PC57
+PC75
production
-3
-medium
-29
+2
+high
+2
Dell
Studio 15 laptop
+10.22.30.46
laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
XP
-10.22.30.28
10.22.30.1
-PC58
+PC76
production
-3
-medium
-29
+2
+high
+2
Dell
Studio 15 laptop
+10.22.30.47
laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
XP
-10.22.30.29
10.22.30.1
-PC59
+PC77
production
-3
-medium
-29
-Dell
-Studio 15 laptop
+2
+high
+2
+Toshiba
+Satelite L300D
+10.22.30.48
laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
XP
-10.22.30.30
10.22.30.1
-PC60
+PC78
production
-3
-medium
-29
-Dell
-Studio 15 laptop
+2
+high
+2
+Toshiba
+Satelite L300D
+10.22.30.49
laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
XP
-10.22.30.31
10.22.30.1
-PC61
+PC79
production
-3
-medium
-29
-Dell
-Studio 15 laptop
+2
+high
+2
+Toshiba
+Satelite L300D
+10.22.30.50
laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.32
10.22.30.1
-PC62
+PC80
production
-3
-medium
-29
-Dell
-Studio 15 laptop
+2
+high
+2
+Toshiba
+Satelite L300D
+10.22.30.51
laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.33
10.22.30.1
-PC63
+PC81
production
-3
-medium
-29
-Dell
-Studio 15 laptop
+2
+high
+2
+Toshiba
+Satelite L300D
+10.22.30.52
laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.34
10.22.30.1
-PC64
+PC82
production
-3
-medium
-29
-Dell
-Studio 15 laptop
+2
+high
+2
+Toshiba
+Satelite L300D
+10.22.30.53
laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.35
10.22.30.1
-PC65
+PC83
production
-3
-medium
-29
-Dell
-Studio 15 laptop
+2
+high
+2
+Toshiba
+Satelite L300D
+10.22.30.54
laptop
2048
-Celeron 2x 1.6Ghz
+Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.36
10.22.30.1
-PC66
+PC84
production
-3
-medium
-29
-Dell
-Studio 15 laptop
+2
+high
+2
+Toshiba
+Satelite L300D
+10.22.30.55
laptop
2048
Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.37
10.22.30.1
-PC67
+PC85
production
-3
-medium
-29
-Dell
-Studio 15 laptop
+2
+high
+2
+Toshiba
+Satelite L300D
+10.22.30.56
laptop
2048
Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.38
10.22.30.1
-PC68
+PC86
production
-3
-medium
-29
-Dell
-Studio 15 laptop
+2
+low
+2
+Toshiba
+Satelite L300D
+10.22.30.57
laptop
2048
Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.39
10.22.30.1
-PC69
+PC87
production
-3
-medium
-29
-Dell
-Studio 15 laptop
+2
+low
+2
+Toshiba
+Satelite L300D
+10.22.30.58
laptop
2048
Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.40
10.22.30.1
-PC70
+PC88
production
-3
-medium
-29
-Dell
-Studio 15 laptop
+2
+low
+2
+Toshiba
+Satelite L300D
+10.22.30.59
laptop
2048
Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.41
10.22.30.1
-PC71
+PC89
production
-3
-medium
-29
-Dell
-Studio 15 laptop
+2
+low
+2
+Toshiba
+Satelite L300D
+10.22.30.60
laptop
2048
Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.42
10.22.30.1
-PC72
+PC90
production
-3
-medium
-29
-Dell
-Studio 15 laptop
+2
+low
+2
+Toshiba
+Satelite L300D
+10.22.30.61
laptop
2048
Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.43
10.22.30.1
-PC73
+PC91
production
-3
-medium
-29
-Dell
-Studio 15 laptop
+2
+low
+2
+Toshiba
+Satelite L300D
+10.22.30.62
laptop
2048
Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.44
10.22.30.1
-PC74
+PC92
production
-3
-high
-29
-Dell
-Studio 15 laptop
+2
+low
+2
+Toshiba
+Satelite L300D
+10.22.30.63
laptop
2048
Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.45
10.22.30.1
-PC75
+PC93
production
-3
-high
-29
-Dell
-Studio 15 laptop
+2
+low
+2
+Toshiba
+Satelite L300D
+10.22.30.64
laptop
2048
Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.46
10.22.30.1
-PC76
+PC94
production
-3
-high
-29
-Dell
-Studio 15 laptop
+2
+low
+2
+Toshiba
+Satelite L300D
+10.22.30.65
laptop
2048
Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.47
10.22.30.1
-PC77
+PC95
production
-3
-high
-29
+2
+low
+2
Toshiba
Satelite L300D
+10.22.30.66
laptop
2048
Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.48
10.22.30.1
-PC78
+PC96
production
-3
-high
-29
+2
+low
+2
Toshiba
Satelite L300D
+10.22.30.67
laptop
2048
Pentium Dual Core 1.8Ghz
60Gb
Windows
-XP
+Vista
-10.22.30.49
10.22.30.1
-PC79
-production
-3
-high
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.50
-10.22.30.1
-
-
-PC80
-production
-3
-high
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.51
-10.22.30.1
-
-
-PC81
-production
-3
-high
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.52
-10.22.30.1
-
-
-PC82
-production
-3
-high
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.53
-10.22.30.1
-
-
-PC83
-production
-3
-high
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.54
-10.22.30.1
-
-
-PC84
-production
-3
-high
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.55
-10.22.30.1
-
-
-PC85
-production
-3
-high
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.56
-10.22.30.1
-
-
-PC86
-production
-3
-low
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.57
-10.22.30.1
-
-
-PC87
-production
-3
-low
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.58
-10.22.30.1
-
-
-PC88
-production
-3
-low
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.59
-10.22.30.1
-
-
-PC89
-production
-3
-low
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.60
-10.22.30.1
-
-
-PC90
-production
-3
-low
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.61
-10.22.30.1
-
-
-PC91
-production
-3
-low
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.62
-10.22.30.1
-
-
-PC92
-production
-3
-low
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.63
-10.22.30.1
-
-
-PC93
-production
-3
-low
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.64
-10.22.30.1
-
-
-PC94
-production
-3
-low
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.65
-10.22.30.1
-
-
-PC95
-production
-3
-low
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.66
-10.22.30.1
-
-
-PC96
-production
-3
-low
-29
-Toshiba
-Satelite L300D
-
-laptop
-2048
-Pentium Dual Core 1.8Ghz
-60Gb
-Windows
-Vista
-
-10.22.30.67
-10.22.30.1
-
-
PC97
production
-3
+2
low
-29
+2
Toshiba
Satelite L300D
+10.22.30.68
laptop
2048
Pentium Dual Core 1.8Ghz
@@ -1859,7 +1841,6 @@
Windows
Vista
-10.22.30.68
10.22.30.1
\ No newline at end of file
diff --git a/trunk/setup/data/06.servers.xml b/trunk/setup/data/06.servers.xml
index d83b26677..1e082ac82 100644
--- a/trunk/setup/data/06.servers.xml
+++ b/trunk/setup/data/06.servers.xml
@@ -1,14 +1,15 @@
-
+
domino.combodo.com
-In Production
-3
+InProduction
+2
high
-1
+3
IBM
Power 520 Express
S4523
+10.22.28.10
8Gb
Power 520 Express
4
@@ -17,58 +18,398 @@
AIX
4.1
-10.22.28.10
+10.22.28.1
+
+
+server02
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.11
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server03
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.12
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server04
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.13
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server05
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.14
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server06
+ProductionCandidate
+2
+medium
+3
+IBM
+
+
+10.22.28.15
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server07
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.16
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server08
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.17
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server09
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.18
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server10
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.19
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server100
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.109
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server101
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.110
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server102
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.111
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server103
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.112
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server104
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.113
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server105
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.114
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server106
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.115
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server107
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.116
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
10.22.28.1
-server02
-Production Candidate
-3
+server108
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.117
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.1
+HP-UX
+11.23
-10.22.28.11
10.22.28.1
-server03
-Production Candidate
-3
+server109
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.118
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.1
+HP-UX
+11.23
-10.22.28.12
10.22.28.1
-server04
-Production Candidate
-3
+server11
+ProductionCandidate
+2
high
-1
+3
IBM
+10.22.28.20
8Gb
Power 520 Express
4
@@ -77,138 +418,118 @@
AIX
4.1
-10.22.28.13
10.22.28.1
-server05
-Production Candidate
-3
+server110
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.119
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.1
+HP-UX
+11.23
-10.22.28.14
10.22.28.1
-server06
-Production Candidate
-3
-medium
-1
-IBM
+server111
+ProductionCandidate
+2
+high
+2
+HP
+10.22.28.120
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.1
+HP-UX
+11.23
-10.22.28.15
10.22.28.1
-server07
-Production Candidate
-3
+server112
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.121
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.1
+HP-UX
+11.23
-10.22.28.16
10.22.28.1
-server08
-Production Candidate
-3
+server113
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.122
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.1
+HP-UX
+11.23
-10.22.28.17
10.22.28.1
-server09
-Production Candidate
-3
+server114
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.123
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.1
+HP-UX
+11.23
-10.22.28.18
10.22.28.1
-server10
-Production Candidate
-3
+server115
+ProductionCandidate
+2
high
-1
-IBM
-
-
-8Gb
-Power 520 Express
-4
-4x120Gb
-200Gb
-AIX
-4.1
-
-10.22.28.19
-10.22.28.1
-
-
-server100
-Production Candidate
-3
-high
-29
+2
HP
+10.22.28.124
8Gb
rp3440
4
@@ -217,358 +538,18 @@
HP-UX
11.23
-10.22.28.109
-10.22.28.1
-
-
-server101
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.110
-10.22.28.1
-
-
-server102
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.111
-10.22.28.1
-
-
-server103
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.112
-10.22.28.1
-
-
-server104
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.113
-10.22.28.1
-
-
-server105
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.114
-10.22.28.1
-
-
-server106
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.115
-10.22.28.1
-
-
-server107
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.116
-10.22.28.1
-
-
-server108
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.117
-10.22.28.1
-
-
-server109
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.118
10.22.28.1
-server11
-Production Candidate
-3
-high
-1
-IBM
-
-
-8Gb
-Power 520 Express
-4
-4x120Gb
-200Gb
-AIX
-4.1
-
-10.22.28.20
-10.22.28.1
-
-
-server110
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.119
-10.22.28.1
-
-
-server111
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.120
-10.22.28.1
-
-
-server112
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.121
-10.22.28.1
-
-
-server113
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.122
-10.22.28.1
-
-
-server114
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.123
-10.22.28.1
-
-
-server115
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.124
-10.22.28.1
-
-
server116
-Production Candidate
-3
+ProductionCandidate
+2
high
-29
+2
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
10.22.28.125
-10.22.28.1
-
-
-server117
-Production Candidate
-3
-high
-29
-HP
-
-
8Gb
rp3440
4
@@ -577,78 +558,18 @@
HP-UX
11.23
-10.22.28.126
-10.22.28.1
-
-
-server118
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.127
-10.22.28.1
-
-
-server119
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.128
10.22.28.1
-server12
-Production Candidate
-3
+server117
+ProductionCandidate
+2
high
-1
-IBM
-
-
-8Gb
-Power 520 Express
-4
-4x120Gb
-200Gb
-AIX
-4.1
-
-10.22.28.21
-10.22.28.1
-
-
-server120
-Production Candidate
-3
-high
-29
+2
HP
+10.22.28.126
8Gb
rp3440
4
@@ -657,218 +578,18 @@
HP-UX
11.23
-10.22.28.129
-10.22.28.1
-
-
-server121
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.130
-10.22.28.1
-
-
-server122
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.131
-10.22.28.1
-
-
-server123
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.132
-10.22.28.1
-
-
-server124
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.133
-10.22.28.1
-
-
-server125
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.134
-10.22.28.1
-
-
-server126
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.135
-10.22.28.1
-
-
-server127
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.136
-10.22.28.1
-
-
-server128
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.137
-10.22.28.1
-
-
-server129
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.138
10.22.28.1
-server13
-Production Candidate
-3
+server118
+ProductionCandidate
+2
high
-1
-IBM
-
-
-8Gb
-Power 520 Express
-4
-4x120Gb
-200Gb
-AIX
-4.1
-
-10.22.28.22
-10.22.28.1
-
-
-server130
-Production Candidate
-3
-high
-29
+2
HP
+10.22.28.127
8Gb
rp3440
4
@@ -877,218 +598,18 @@
HP-UX
11.23
-10.22.28.139
-10.22.28.1
-
-
-server131
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.140
-10.22.28.1
-
-
-server132
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.141
-10.22.28.1
-
-
-server133
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.142
-10.22.28.1
-
-
-server134
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.143
-10.22.28.1
-
-
-server135
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.144
-10.22.28.1
-
-
-server136
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.145
-10.22.28.1
-
-
-server137
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.146
-10.22.28.1
-
-
-server138
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.147
-10.22.28.1
-
-
-server139
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.148
10.22.28.1
-server14
-Production Candidate
-3
+server119
+ProductionCandidate
+2
high
-1
-IBM
-
-
-8Gb
-Power 520 Express
-4
-4x120Gb
-200Gb
-AIX
-4.1
-
-10.22.28.23
-10.22.28.1
-
-
-server140
-Production Candidate
-3
-high
-29
+2
HP
+10.22.28.128
8Gb
rp3440
4
@@ -1097,198 +618,18 @@
HP-UX
11.23
-10.22.28.149
-10.22.28.1
-
-
-server141
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.150
-10.22.28.1
-
-
-server142
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.151
-10.22.28.1
-
-
-server143
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.152
-10.22.28.1
-
-
-server144
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.153
-10.22.28.1
-
-
-server145
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.154
-10.22.28.1
-
-
-server146
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.155
-10.22.28.1
-
-
-server147
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.156
-10.22.28.1
-
-
-server148
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.157
-10.22.28.1
-
-
-server149
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.158
10.22.28.1
-server15
-Production Candidate
-3
+server12
+ProductionCandidate
+2
high
-1
+3
IBM
+10.22.28.21
8Gb
Power 520 Express
4
@@ -1297,238 +638,18 @@
AIX
4.1
-10.22.28.24
-10.22.28.1
-
-
-server150
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.159
-10.22.28.1
-
-
-server151
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.160
-10.22.28.1
-
-
-server152
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.161
-10.22.28.1
-
-
-server153
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.162
-10.22.28.1
-
-
-server154
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.163
-10.22.28.1
-
-
-server155
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.164
-10.22.28.1
-
-
-server156
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.165
-10.22.28.1
-
-
-server157
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.166
-10.22.28.1
-
-
-server158
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.167
-10.22.28.1
-
-
-server159
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.168
10.22.28.1
-server16
-Production Candidate
-3
+server120
+ProductionCandidate
+2
high
-1
-IBM
-
-
-8Gb
-Power 520 Express
-4
-4x120Gb
-200Gb
-AIX
-4.1
-
-10.22.28.25
-10.22.28.1
-
-
-server160
-Production Candidate
-3
-high
-29
+2
HP
+10.22.28.129
8Gb
rp3440
4
@@ -1537,218 +658,18 @@
HP-UX
11.23
-10.22.28.169
-10.22.28.1
-
-
-server161
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.170
-10.22.28.1
-
-
-server162
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.171
-10.22.28.1
-
-
-server163
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.172
-10.22.28.1
-
-
-server164
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.173
-10.22.28.1
-
-
-server165
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.174
-10.22.28.1
-
-
-server166
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.175
-10.22.28.1
-
-
-server167
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.176
-10.22.28.1
-
-
-server168
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.177
-10.22.28.1
-
-
-server169
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.178
10.22.28.1
-server17
-Production Candidate
-3
+server121
+ProductionCandidate
+2
high
-1
-IBM
-
-
-8Gb
-Power 520 Express
-4
-4x120Gb
-200Gb
-AIX
-4.1
-
-10.22.28.26
-10.22.28.1
-
-
-server170
-Production Candidate
-3
-high
-29
+2
HP
+10.22.28.130
8Gb
rp3440
4
@@ -1757,218 +678,18 @@
HP-UX
11.23
-10.22.28.179
-10.22.28.1
-
-
-server171
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.180
-10.22.28.1
-
-
-server172
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.181
-10.22.28.1
-
-
-server173
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.182
-10.22.28.1
-
-
-server174
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.183
-10.22.28.1
-
-
-server175
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.184
-10.22.28.1
-
-
-server176
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.185
-10.22.28.1
-
-
-server177
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.186
-10.22.28.1
-
-
-server178
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.187
-10.22.28.1
-
-
-server179
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.188
10.22.28.1
-server18
-Production Candidate
-3
+server122
+ProductionCandidate
+2
high
-1
-IBM
-
-
-8Gb
-Power 520 Express
-4
-4x120Gb
-200Gb
-AIX
-4.1
-
-10.22.28.27
-10.22.28.1
-
-
-server180
-Production Candidate
-3
-high
-29
+2
HP
+10.22.28.131
8Gb
rp3440
4
@@ -1977,218 +698,18 @@
HP-UX
11.23
-10.22.28.189
-10.22.28.1
-
-
-server181
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.190
-10.22.28.1
-
-
-server182
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.191
-10.22.28.1
-
-
-server183
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.192
-10.22.28.1
-
-
-server184
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.193
-10.22.28.1
-
-
-server185
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.194
-10.22.28.1
-
-
-server186
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.195
-10.22.28.1
-
-
-server187
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.196
-10.22.28.1
-
-
-server188
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.197
-10.22.28.1
-
-
-server189
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.198
10.22.28.1
-server19
-Production Candidate
-3
+server123
+ProductionCandidate
+2
high
-1
-IBM
-
-
-8Gb
-Power 520 Express
-4
-4x120Gb
-200Gb
-AIX
-4.1
-
-10.22.28.28
-10.22.28.1
-
-
-server190
-Production Candidate
-3
-high
-29
+2
HP
+10.22.28.132
8Gb
rp3440
4
@@ -2197,778 +718,1778 @@
HP-UX
11.23
-10.22.28.199
-10.22.28.1
-
-
-server191
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.200
-10.22.28.1
-
-
-server192
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.201
-10.22.28.1
-
-
-server193
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.202
-10.22.28.1
-
-
-server194
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.203
-10.22.28.1
-
-
-server195
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.204
-10.22.28.1
-
-
-server196
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.205
-10.22.28.1
-
-
-server197
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.206
-10.22.28.1
-
-
-server198
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.207
-10.22.28.1
-
-
-server199
-Production Candidate
-3
-high
-29
-HP
-
-
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
-10.22.28.208
10.22.28.1
-server20
-Production Candidate
-3
+server124
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.133
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.1
+HP-UX
+11.23
-10.22.28.29
10.22.28.1
-server21
-Production Candidate
-3
+server125
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.134
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.1
+HP-UX
+11.23
-10.22.28.30
10.22.28.1
-server22
-Production Candidate
-3
+server126
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.135
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.1
+HP-UX
+11.23
-10.22.28.31
10.22.28.1
-server23
-Production Candidate
-3
+server127
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.136
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.1
+HP-UX
+11.23
-10.22.28.32
10.22.28.1
-server24
-Production Candidate
-3
+server128
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.137
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.1
+HP-UX
+11.23
-10.22.28.33
10.22.28.1
-server25
-Production Candidate
-3
+server129
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.138
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.34
10.22.28.1
-server26
-Production Candidate
-3
+server13
+ProductionCandidate
+2
high
-1
+3
IBM
+10.22.28.22
8Gb
Power 520 Express
4
4x120Gb
200Gb
AIX
-4.3
+4.1
-10.22.28.35
10.22.28.1
-server27
-Production Candidate
-3
+server130
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.139
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.36
10.22.28.1
-server28
-Production Candidate
-3
+server131
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.140
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.37
10.22.28.1
-server29
-Production Candidate
-3
+server132
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.141
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.38
10.22.28.1
-server30
-Production Candidate
-3
+server133
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.142
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.39
10.22.28.1
-server31
-Production Candidate
-3
+server134
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.143
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.40
10.22.28.1
-server32
-Production Candidate
-3
+server135
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.144
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.41
10.22.28.1
-server33
-Production Candidate
-3
+server136
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.145
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.42
10.22.28.1
-server34
-Production Candidate
-3
+server137
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.146
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.43
10.22.28.1
-server35
-Production Candidate
-3
+server138
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.147
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.44
10.22.28.1
-server36
-Production Candidate
-3
+server139
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.148
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.45
10.22.28.1
-server37
-Production Candidate
-3
+server14
+ProductionCandidate
+2
high
-1
+3
IBM
+10.22.28.23
8Gb
Power 520 Express
4
4x120Gb
200Gb
AIX
-4.3
+4.1
-10.22.28.46
10.22.28.1
-server38
-Production Candidate
-3
+server140
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.149
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.47
10.22.28.1
-server39
-Production Candidate
-3
+server141
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.150
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.48
10.22.28.1
-server40
-Production Candidate
-3
+server142
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.151
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.49
10.22.28.1
-server41
-Production Candidate
-3
+server143
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.152
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.50
10.22.28.1
-server42
-Production Candidate
-3
+server144
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.153
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.51
10.22.28.1
-server43
-Production Candidate
-3
+server145
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.154
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.52
10.22.28.1
-server44
-Production Candidate
-3
+server146
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.155
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.53
10.22.28.1
-server45
-Production Candidate
-3
+server147
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.156
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.54
10.22.28.1
-server46
-Production Candidate
-3
+server148
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.157
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.55
10.22.28.1
-server47
-Production Candidate
-3
+server149
+ProductionCandidate
+2
high
-1
-IBM
+2
+HP
+10.22.28.158
8Gb
-Power 520 Express
+rp3440
4
4x120Gb
200Gb
-AIX
-4.3
+HP-UX
+11.23
-10.22.28.56
10.22.28.1
-server48
-Production Candidate
-3
+server15
+ProductionCandidate
+2
high
-1
+3
IBM
+10.22.28.24
8Gb
Power 520 Express
4
4x120Gb
200Gb
AIX
-4.3
+4.1
-10.22.28.57
10.22.28.1
-server49
-Production Candidate
-3
+server150
+ProductionCandidate
+2
high
-1
+2
+HP
+
+
+10.22.28.159
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server151
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.160
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server152
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.161
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server153
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.162
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server154
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.163
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server155
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.164
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server156
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.165
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server157
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.166
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server158
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.167
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server159
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.168
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server16
+ProductionCandidate
+2
+high
+3
IBM
+10.22.28.25
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server160
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.169
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server161
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.170
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server162
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.171
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server163
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.172
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server164
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.173
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server165
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.174
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server166
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.175
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server167
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.176
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server168
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.177
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server169
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.178
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server17
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.26
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server170
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.179
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server171
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.180
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server172
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.181
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server173
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.182
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server174
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.183
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server175
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.184
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server176
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.185
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server177
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.186
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server178
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.187
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server179
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.188
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server18
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.27
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server180
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.189
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server181
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.190
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server182
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.191
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server183
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.192
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server184
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.193
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server185
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.194
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server186
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.195
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server187
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.196
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server188
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.197
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server189
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.198
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server19
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.28
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server190
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.199
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server191
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.200
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server192
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.201
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server193
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.202
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server194
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.203
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server195
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.204
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server196
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.205
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server197
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.206
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server198
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.207
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server199
+ProductionCandidate
+2
+high
+2
+HP
+
+
+10.22.28.208
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.23
+
+10.22.28.1
+
+
+server20
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.29
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server21
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.30
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server22
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.31
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server23
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.32
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server24
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.33
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.22.28.1
+
+
+server25
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.34
8Gb
Power 520 Express
4
@@ -2977,958 +2498,1418 @@
AIX
4.3
+10.22.28.1
+
+
+server26
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.35
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server27
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.36
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server28
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.37
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server29
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.38
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server30
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.39
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server31
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.40
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server32
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.41
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server33
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.42
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server34
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.43
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server35
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.44
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server36
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.45
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server37
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.46
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server38
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.47
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server39
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.48
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server40
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.49
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server41
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.50
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server42
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.51
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server43
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.52
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server44
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.53
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server45
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.54
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server46
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.55
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server47
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.56
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server48
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.22.28.57
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
+10.22.28.1
+
+
+server49
+ProductionCandidate
+2
+high
+3
+IBM
+
+
10.22.28.58
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.3
+
10.22.28.1
-
+
server50
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.59
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server51
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.60
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server52
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.61
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server53
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.62
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server54
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.63
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server55
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.64
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server56
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.65
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server57
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.66
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server58
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.67
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server59
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.68
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server60
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.69
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server61
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.70
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server62
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.71
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server63
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.72
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server64
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.73
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server65
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.74
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server66
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.75
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server67
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.76
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server68
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.77
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server69
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.78
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server70
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.79
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server71
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.80
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server72
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.81
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server73
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.82
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server74
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.83
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server75
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.84
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server76
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.85
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server77
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.86
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server78
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.87
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server79
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.88
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server80
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.89
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server81
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.90
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server82
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.91
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server83
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.92
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server84
-Production Candidate
-3
+ProductionCandidate
+2
high
-1
+3
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.93
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server85
-Production Candidate
-3
+ProductionCandidate
+2
high
-29
+2
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.94
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server86
-Production Candidate
-3
+ProductionCandidate
+2
high
-29
+2
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.95
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server87
-Production Candidate
-3
+ProductionCandidate
+2
high
-29
+2
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.96
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server88
-Production Candidate
-3
+ProductionCandidate
+2
high
-29
+2
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.97
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server89
-Production Candidate
-3
+ProductionCandidate
+2
high
-29
+2
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.98
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server90
-Production Candidate
-3
+ProductionCandidate
+2
high
-29
+2
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.99
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server91
-Production Candidate
-3
+ProductionCandidate
+2
high
-29
+2
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.100
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server92
-Production Candidate
-3
+ProductionCandidate
+2
high
-29
+2
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.101
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server93
-Production Candidate
-3
+ProductionCandidate
+2
high
-29
+2
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.102
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server94
-Production Candidate
-3
+ProductionCandidate
+2
high
-29
+2
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.103
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server95
-Production Candidate
-3
+ProductionCandidate
+2
high
-29
+2
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.104
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server96
-Production Candidate
-3
+ProductionCandidate
+2
high
-29
+2
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.11
-
10.22.28.105
-10.22.28.1
-
-
-server97
-Production Candidate
-3
-high
-29
-HP
-
-
8Gb
rp3440
4
@@ -3937,38 +3918,38 @@
HP-UX
11.11
+10.22.28.1
+
+
+server97
+ProductionCandidate
+2
+high
+2
+HP
+
+
10.22.28.106
+8Gb
+rp3440
+4
+4x120Gb
+200Gb
+HP-UX
+11.11
+
10.22.28.1
-
+
server98
-Production Candidate
-3
+ProductionCandidate
+2
high
-29
+2
HP
-8Gb
-rp3440
-4
-4x120Gb
-200Gb
-HP-UX
-11.23
-
10.22.28.107
-10.22.28.1
-
-
-server99
-Production Candidate
-3
-high
-29
-HP
-
-
8Gb
rp3440
4
@@ -3977,78 +3958,78 @@
HP-UX
11.23
-10.22.28.108
10.22.28.1
-
-srv01.combodo.com
-Production Candidate
-3
+
+server99
+ProductionCandidate
+2
high
-1
-IBM
-
-
-8Gb
-Power 520 Express
-4
-4x120Gb
-200Gb
-AIX
-4.1
-
-10.32.28.11
-10.32.28.1
-
-
-srv02.combodo.com
-Production Candidate
-3
-high
-1
+2
HP
+10.22.28.108
8Gb
-rp3410
+rp3440
4
4x120Gb
200Gb
-HP UX
+HP-UX
11.23
-10.32.28.12
-10.32.28.1
-
-
-srv03.combodo.com
-Production Candidate
-3
-high
-1
-IBM
-
-
-8Gb
-Power 520 Express
-4
-4x120Gb
-200Gb
-AIX
-4.1
-
-10.32.28.13
-10.32.28.1
+10.22.28.1
-srv04.combodo.com
-Production Candidate
-3
+srv01
+Plugged
+2
+low
+3
+HP
+DL380
+1234
+10.2.22.1
+12
+Intel
+1
+160Gb
+150GB
+Windows
+XP
+23456
+
+
+
+srv01.combodo.com
+ProductionCandidate
+2
high
-1
+3
+IBM
+
+
+10.32.28.11
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.32.28.1
+
+
+srv02.combodo.com
+ProductionCandidate
+2
+high
+3
HP
+10.32.28.12
8Gb
rp3410
4
@@ -4057,7 +4038,46 @@
HP UX
11.23
+10.32.28.1
+
+
+srv03.combodo.com
+ProductionCandidate
+2
+high
+3
+IBM
+
+
+10.32.28.13
+8Gb
+Power 520 Express
+4
+4x120Gb
+200Gb
+AIX
+4.1
+
+10.32.28.1
+
+
+srv04.combodo.com
+ProductionCandidate
+2
+high
+3
+HP
+
+
10.32.28.14
+8Gb
+rp3410
+4
+4x120Gb
+200Gb
+HP UX
+11.23
+
10.32.28.1
\ No newline at end of file
diff --git a/trunk/setup/data/07.applications.xml b/trunk/setup/data/07.applications.xml
index c6adc3609..1031a3c8f 100644
--- a/trunk/setup/data/07.applications.xml
+++ b/trunk/setup/data/07.applications.xml
@@ -1,31 +1,31 @@
-
+
Oracle 10g
production
-3
+2
high
-5
+107
2008-11-05 00:00:00
10g
Database
-
+
outlook Office
production
-3
+2
high
-2
+9
2008-12-30 00:00:00
8.4
Mail client
-
+
Outlook server
implementation
-3
+2
high
-5
+107
2008-12-20 00:00:00
8.1
Mail Server
diff --git a/trunk/setup/data/08.nw-devices.xml b/trunk/setup/data/08.nw-devices.xml
index 97e6a2200..76a4fa58c 100644
--- a/trunk/setup/data/08.nw-devices.xml
+++ b/trunk/setup/data/08.nw-devices.xml
@@ -1,67 +1,67 @@
-
+
router01
production
-3
+2
high
-1
+3
Cisco
6500
S2345985
-switch
-10.25.3.45
-10.25.3.1
+10.2.22.1
+router
+
8.2
flash :1=16.48MB
public
private
-
+
router02
production
-3
+2
high
-1
+2
Cisco
6500
S2345985
+
switch
-10.25.3.46
10.25.3.1
8.2
flash :1=16.48MB
public
private
-
+
router03
production
-3
+2
high
-1
+3
Cisco
6500
S2345985
+
switch
-10.25.3.47
-10.25.3.1
+10.25.3.6
8.2
flash :1=16.48MB
-public
+toto
private
-
+
switch01
production
-3
+2
high
-1
+3
+
switch
-
diff --git a/trunk/setup/data/09.links_contacts.xml b/trunk/setup/data/09.links_contacts.xml
index ebd943f13..e26cac46a 100644
--- a/trunk/setup/data/09.links_contacts.xml
+++ b/trunk/setup/data/09.links_contacts.xml
@@ -2,22 +2,22 @@
8
-7
+6
business model expert
-21
-2
+4
+9
owner
-
-7
-5
+
+6
+107
Server Owner
8
-21
+4
Team Leader
\ No newline at end of file
diff --git a/trunk/setup/data/10.workgroups.xml b/trunk/setup/data/10.workgroups.xml
index 714771512..a2ff7a887 100644
--- a/trunk/setup/data/10.workgroups.xml
+++ b/trunk/setup/data/10.workgroups.xml
@@ -1,16 +1,16 @@
-
+
FLS Desktop
production
-3
-8
+2
+7
1st level support
-
+
FLS Network
production
-3
+2
8
2nd level support
diff --git a/trunk/setup/data/11.incidents.xml b/trunk/setup/data/11.incidents.xml
index d0a78fe20..e3e2db689 100644
--- a/trunk/setup/data/11.incidents.xml
+++ b/trunk/setup/data/11.incidents.xml
@@ -1,132 +1,155 @@
-
-
-
-I-000001
-PC issue
-Desktop
-3
-WorkInProgress
-there is an issue with my PC
-
-2009-02-10 21:30:55
-
-
-
-21
-not able to start IE
-19
-7
-We are about to connect to your PC via Netmeeting and troubleshoot what's up.
-
-Then we will try to contact Microsoft to understand if it is a known issue
-critical
-1
-
-
-
-I-000002
-Network issue
-Network
-3
-Assigned
-No more access to the network
-Network connectivity lost
-2009-02-19 19:07:25
-0000-00-00 00:00:00
-0000-00-00 00:00:00
-0000-00-00 00:00:00
-7
-high
-24
-21
-need to investigate the network
-low
-2
-
-
-
-I-000003
-Disk Failure on Server01
-Server
-3
-WorkInProgress
-Partition /var is no more accessible.
-It seems that hard disk is broken
-Filesystem is full
-2009-03-21 08:27:46
-2009-02-10 22:25:00
-2009-02-10 00:25:00
-0000-00-00 00:00:00
-20
-Really important for the business
-19
-7
-There are lot of logs file to be trimed
-medium
-2
-
-
-
-I-000004
-Oracle Database down on domino
-Server
-3
-New
-Database Oracle is no more accessible on Server01
-Customer cannot access Order web site.
-2009-03-17 09:31:09
-0000-00-00 00:00:00
-0000-00-00 00:00:00
-0000-00-00 00:00:00
-7
-Very critical
-19
-0
-
-low
-0
-
-
-
-I-000005
-Issue with my pc
-Desktop
-3
-Assigned
-My PC is locked
-We have to analyze
-2009-03-01 23:22:38
-0000-00-00 00:00:00
-0000-00-00 00:00:00
-0000-00-00 00:00:00
-7
-
-19
-20
-
-medium
-1
-
-
-
-I-000006
-Demo
-Server
-3
-New
-gdfgl
-
-2009-03-18 22:00:00
-0000-00-00 00:00:00
-0000-00-00 00:00:00
-0000-00-00 00:00:00
-20
-personne ne peut acceder au site de paris
-19
-0
-
-low
-0
-
-
-
+
+
+
+I-000001
+PC issue
+Desktop
+2
+WorkInProgress
+there is an issue with my PC
+
+2009-02-10 21:30:55
+0000-00-00 00:00:00
+0000-00-00 00:00:00
+0000-00-00 00:00:00
+4
+not able to start IE
+317
+6
+We are about to connect to your PC via Netmeeting and troubleshoot what's up.
+
+Then we will try to contact Microsoft to understand if it is a known issue
+critical
+1
+
+
+
+I-000002
+Network issue
+Network
+2
+Assigned
+No more access to the network
+Network connectivity lost
+2009-02-19 19:07:25
+0000-00-00 00:00:00
+0000-00-00 00:00:00
+0000-00-00 00:00:00
+6
+not important
+318
+6
+need to investigate the network
+low
+2
+
+
+
+I-000003
+Disk Failure on Server01
+Server
+2
+WorkInProgress
+Partition /var is no more accessible.
+It seems that hard disk is broken
+Filesystem is full
+2009-03-21 08:27:46
+2009-02-10 22:25:00
+2009-02-10 00:25:00
+0000-00-00 00:00:00
+5
+Really important for the business
+317
+6
+There are lot of logs file to be trimed
+medium
+2
+
+
+
+I-000004
+Oracle Database down on domino
+Server
+2
+New
+Database Oracle is no more accessible on Server01
+Customer cannot access Order web site.
+2009-03-17 09:31:09
+0000-00-00 00:00:00
+0000-00-00 00:00:00
+0000-00-00 00:00:00
+6
+Very critical
+317
+0
+
+low
+0
+
+
+
+I-000005
+Issue with my pc
+Desktop
+2
+Assigned
+My PC is locked
+We have to analyze
+2009-03-01 23:22:38
+0000-00-00 00:00:00
+0000-00-00 00:00:00
+0000-00-00 00:00:00
+6
+
+317
+5
+
+medium
+1
+
+
+
+I-000006
+Demo
+Desktop
+2
+WorkInProgress
+gdfgl
+
+2009-03-18 22:00:00
+2009-09-17 18:41:44
+0000-00-00 00:00:00
+0000-00-00 00:00:00
+5
+personne ne peut acceder au site de paris
+317
+6
+posjgsrkg
+jgmklerjg
+gejrg
+low
+1
+
+
+
+I-000009
+Issue on WAN
+Server
+2
+Assigned
+no access to Grenoble From Paris
+
+2009-09-19 10:51:00
+2009-09-19 10:52:00
+0000-00-00 00:00:00
+0000-00-00 00:00:00
+5
+Site isolated
+318
+6
+
+critical
+1
+
+
+
\ No newline at end of file
diff --git a/trunk/setup/data/12.relatedtickets.xml b/trunk/setup/data/12.relatedtickets.xml
index dd5eeaa71..d736d906b 100644
--- a/trunk/setup/data/12.relatedtickets.xml
+++ b/trunk/setup/data/12.relatedtickets.xml
@@ -1,5 +1,10 @@
+
+1
+5
+
+
2
1
diff --git a/trunk/setup/data/13.infratickets.xml b/trunk/setup/data/13.infratickets.xml
index 4d9974843..16f11e577 100644
--- a/trunk/setup/data/13.infratickets.xml
+++ b/trunk/setup/data/13.infratickets.xml
@@ -1,33 +1,58 @@
-
-125
+
+108
6
c'est down
-
-5
+
+308
+2
+eger
+
+
+307
+2
+egertg
+
+
+309
+2
+hn,hn
+
+
+107
3
main application is broken
-
-5
+
+328
+9
+no access to Grenoble
+
+
+107
2
no more access to network
-2
+9
1
not able to start IE
-
-28
-5
-not able to work
-
-
-5
+
+107
4
Order web site is no more working
+
+9
+5
+PC is down
+
+
+306
+2
+sgjgjklekglekg
+
\ No newline at end of file
diff --git a/trunk/setup/data/14.contacttickets.xml b/trunk/setup/data/14.contacttickets.xml
index 2b24a6215..f92965e89 100644
--- a/trunk/setup/data/14.contacttickets.xml
+++ b/trunk/setup/data/14.contacttickets.xml
@@ -6,7 +6,7 @@
Team that need to be informed
-21
+4
3
to be informed
diff --git a/trunk/setup/data/15.changetickets.xml b/trunk/setup/data/15.changetickets.xml
index 51b9695b0..e07dcd12e 100644
--- a/trunk/setup/data/15.changetickets.xml
+++ b/trunk/setup/data/15.changetickets.xml
@@ -1,85 +1,85 @@
-
-
-
-CM-0000003
-1st change
-Routine
-Desktop
-reason
-20
-3
-PlannedScheduled
-2009-02-19 21:35:47
-2009-02-18 18:33:14
-0000-00-00 00:00:00
-0000-00-00 00:00:00
-0000-00-00 00:00:00
-There is no impact
-19
-21
-19
-20
-19
-7
-No
-I would like to install SQL plus on my laptop.
-Could you make it please
-We will push via netmeeting the package and install it at 10:00 tomorrow
-If there is any issue we will uninstall it
-0
-
-
-CM-0000004
-Oracle upgrade on domino
-Routine
-Application
-Patch Installation for Oracle
-21
-3
-Approved
-2009-03-17 14:50:34
-2009-03-17 14:50:34
-2009-02-24 00:00:00
-2009-02-24 02:00:00
-0000-00-00 00:00:00
-application impacted
-19
-20
-19
-21
-19
-7
-Yes
-We wan to install last Oracle Patch in order to fix rollback management issues
-We will install patch and reboot the server
-If not working we will remove this patch
-0
-
-
-CM-0000005
-IOS upgrade
-Routine
-Desktop
-security issue
-21
-3
-New
-2009-04-04 23:23:37
-0000-00-00 00:00:00
-0000-00-00 00:00:00
-0000-00-00 00:00:00
-0000-00-00 00:00:00
-
-19
-21
-19
-20
-19
-7
-No
-Upgrade to new IOS due to security reason
-
-
-0
-
-
+
+
+
+C-000001
+1st change
+Routine
+Desktop
+reason
+5
+2
+PlannedScheduled
+2009-02-19 21:35:47
+2009-02-18 18:33:14
+0000-00-00 00:00:00
+0000-00-00 00:00:00
+0000-00-00 00:00:00
+There is no impact
+317
+4
+317
+5
+317
+6
+No
+I would like to install SQL plus on my laptop.
+Could you make it please
+We will push via netmeeting the package and install it at 10:00 tomorrow
+If there is any issue we will uninstall it
+0
+
+
+C-000002
+Oracle upgrade on domino
+Routine
+Application
+Patch Installation for Oracle
+4
+2
+Approved
+2009-03-17 14:50:34
+2009-03-17 14:50:34
+2009-02-24 00:00:00
+2009-02-24 02:00:00
+0000-00-00 00:00:00
+application impacted
+317
+5
+317
+4
+317
+6
+Yes
+We wan to install last Oracle Patch in order to fix rollback management issues
+We will install patch and reboot the server
+If not working we will remove this patch
+0
+
+
+C-000003
+IOS upgrade
+Routine
+Desktop
+security issue
+4
+2
+New
+2009-04-04 23:23:37
+2009-09-19 11:13:23
+0000-00-00 00:00:00
+0000-00-00 00:00:00
+0000-00-00 00:00:00
+
+317
+6
+317
+5
+317
+6
+No
+Upgrade to new IOS due to security reason
+
+
+0
+
+
\ No newline at end of file
diff --git a/trunk/setup/data/16.infrachangetickets.xml b/trunk/setup/data/16.infrachangetickets.xml
index af099731b..9fe3d87e3 100644
--- a/trunk/setup/data/16.infrachangetickets.xml
+++ b/trunk/setup/data/16.infrachangetickets.xml
@@ -1,22 +1,22 @@
-
-22
+
+310
2
impacted application
-
-5
+
+107
2
impacted server
-
-2
+
+9
1
PC where to install new appli
-
-6
+
+313
3
router not available
diff --git a/trunk/setup/data/17.contactchangetickets.xml b/trunk/setup/data/17.contactchangetickets.xml
index d22e88992..cfe8f00a1 100644
--- a/trunk/setup/data/17.contactchangetickets.xml
+++ b/trunk/setup/data/17.contactchangetickets.xml
@@ -1,22 +1,22 @@
-
-7
+
+6
1
DB admin
-
-20
+
+5
2
Db administrator
-
-21
+
+4
1
notify me
-
-7
+
+6
2
Server Owner for reboot
diff --git a/trunk/setup/data/18.contracts.xml b/trunk/setup/data/18.contracts.xml
index 22f23c6b5..5c617a865 100644
--- a/trunk/setup/data/18.contracts.xml
+++ b/trunk/setup/data/18.contracts.xml
@@ -1,23 +1,37 @@
-
-
-
-Oracle Support
-3
-6
-Software support
-8
-Gold
-Global
-Yearly
-30000
-Euros
-This contract define Oracle Support contract between Mecanorama and Oracle company.
-
-Yearly cost is 30.000 euros
-2009-02-22 18:54:14
-2009-03-04 00:01:38
-Signed
-Software
-3
-
-
+
+
+
+Support for Database
+2
+1
+7
+Bronze
+Global
+Once
+234570
+Euros
+xcbvxdb
+2009-09-23 21:44:07
+0000-00-00 00:00:00
+Production
+Support
+2
+
+
+test
+2
+1
+0
+Bronze
+Global
+Once
+qfqsf
+Euros
+wsdqsdf
+2009-09-23 22:55:50
+0000-00-00 00:00:00
+Production
+Support
+2
+
+
\ No newline at end of file
diff --git a/trunk/setup/data/19.infracontracts.xml b/trunk/setup/data/19.infracontracts.xml
index 509a3d947..e51ab6c81 100644
--- a/trunk/setup/data/19.infracontracts.xml
+++ b/trunk/setup/data/19.infracontracts.xml
@@ -1,9 +1,9 @@
-
-22
-1
-Office Hour
+
+310
+2
+8*5
Gold
\ No newline at end of file
diff --git a/trunk/setup/data/20.contactcontracts.xml b/trunk/setup/data/20.contactcontracts.xml
index f33a08332..bb2f80600 100644
--- a/trunk/setup/data/20.contactcontracts.xml
+++ b/trunk/setup/data/20.contactcontracts.xml
@@ -1,13 +1,8 @@
-
-21
-1
-Contract Manager
-
-
-8
-1
-Team in charge to manage Oracle
+
+6
+2
+contract manager
\ No newline at end of file
diff --git a/trunk/setup/data/21.subnets.xml b/trunk/setup/data/21.subnets.xml
index 91ef1eb0d..48ef37a6e 100644
--- a/trunk/setup/data/21.subnets.xml
+++ b/trunk/setup/data/21.subnets.xml
@@ -1,11 +1,11 @@
-
-3
-my subnet
+
+subnet 1
implementation
-low
-10.22.0.0
-255.255.0.0
+2
+low
+15.128.3.0
+255.255.255.0
-
+
\ No newline at end of file
diff --git a/trunk/setup/data/export.cmd b/trunk/setup/data/export.cmd
index 4a2b0fc96..c30c33d04 100644
--- a/trunk/setup/data/export.cmd
+++ b/trunk/setup/data/export.cmd
@@ -1,4 +1,4 @@
-SET WEBROOT=http://localhost:81
+SET WEBROOT=http://localhost:81/trunk
SET EXPORT=%WEBROOT%/webservices/export.php
SET USER=admin
@@ -8,13 +8,15 @@ REM The order (numbering) of the files is important since
REM it dictates the order to import them back
wget --output-document=01.organizations.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT bizOrganization&format=xml"
wget --output-document=02.locations.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT bizLocation&format=xml"
-wget --output-document=03.persons.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT bizPerson&format=xml"
+wget --output-document=03.persons.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT bizPerson WHERE id !%%3D 1&format=xml"
wget --output-document=04.teams.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT bizTeam&format=xml"
wget --output-document=05.pcs.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT bizPC&format=xml"
wget --output-document=06.servers.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT bizServer&format=xml"
wget --output-document=07.applications.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT bizApplication&format=xml"
wget --output-document=08.nw-devices.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT bizNetworkDevice&format=xml"
wget --output-document=09.links_contacts.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT lnkContactRealObject&format=xml"
+wget --output-document=09.1.interfaces.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT bizInterface&format=xml"
+wget --output-document=09.2.circuits.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT bizCircuit&format=xml"
wget --output-document=10.workgroups.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT bizWorkgroup&format=xml"
wget --output-document=11.incidents.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT bizIncidentTicket&format=xml"
wget --output-document=12.relatedtickets.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT lnkRelatedTicket&format=xml"
@@ -24,6 +26,9 @@ wget --output-document=15.changetickets.xml --post-data="auth_user=%USER%&auth_p
wget --output-document=16.infrachangetickets.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT lnkInfraChangeTicket&format=xml"
wget --output-document=17.contactchangetickets.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT lnkContactChange&format=xml"
wget --output-document=18.contracts.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT bizContract&format=xml"
+wget --output-document=18.1.services.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT bizService&format=xml"
wget --output-document=19.infracontracts.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT lnkInfraContract&format=xml"
wget --output-document=20.contactcontracts.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT lnkContactContract&format=xml"
wget --output-document=21.subnets.xml --post-data="auth_user=%USER%&auth_pwd=%PWD%&operation=login" "%EXPORT%?expression=SELECT bizSubnet&format=xml"
+
+pause