Tom I wouldn’t expect you to look through to find differences that would be a pain. These are the changes based off what is in 1.2.0
[U][B]FOGMountBootImage.sh[/B][/U]
l15: replace .gq with .xz and changed location
cp /var/www/fog/service/ipxe/init.xz /tmp/init.xz >/dev/null 2>&1;
l20: use xz instead of gunzip
xz --decompress init.xz;
l45: use xz to compress
xz -C crc32 -z -c init > init.xz;
l49: copy to updated location
cp -f init.xz /var/www/fog/service/ipxe/init.xz;
[U][B]BootMenu.class[/B][/U]
L144: changed default boot device after timeout
$this->defaultChoice = “choose --default fog.reginput --timeout $timeout target && goto ${target}\n”;
L667: added shutdown command after register
print “$this->kernel loglevel=4 shutdown=1 $type\n”;
[U][B]GroupManagementPage.class.php[/B][/U]
L51-51:changed the order of the icons, renamed Download to Unicast, removed the edit button
sprintf(‘<a href=“?node=group&sub=deploy&type=1&%s=${id}”><span class=“icon icon-download” title=“Unicast”></span></a><a href=“?node=group&sub=edit&%s=${id}#group-tasks”><span class=“icon icon-deploy” title=“Deploy”></span></a><a href=“?node=group&sub=deploy&type=8&%s=${id}”><span class=“icon icon-multicast” title=“Mutli-cast”></span></a> ‘, $this->id, $this->id, $this->id, $this->id, $this->id, $this->id),
sprintf(’<a href=“?node=group&sub=delete&%s=${id}”><span class=“icon icon-delete” title=“Delete”></span></a>’, $this->id, $this->id, $this->id, $this->id, $this->id, $this->id),
[U][B]HostManagementPage.class.php[/B][/U]
L41: changed header to just delete I didn’t feel like the edit button was necessary I removed it from below changed it to be
_(‘Delete’),
L51-53: modified the order icons didn’t like Upload and Download were right next to each other, removed edit, and changed some of the titles
‘<a href=“?node=host&sub=deploy&sub=deploy&type=1&id=${host_id}”><span class=“icon icon-download” title=“Unicast”><a href=“?node=host&sub=deploy&type=8&id=${host_id}”><span class=“icon icon-deploy” title=“Deploy”></span></a></span></a> <a href=“?node=host&sub=deploy&sub=deploy&type=2&id=${host_id}”><span class=“icon icon-upload” title=“Upload”></span></a>’,
‘<a href=“?node=host&sub=delete&id=${host_id}”><span class=“icon icon-delete” title=“Delete”></span></a>’,
‘${image_name}’,
L61-65: changed icon position layout
array(‘width’ => 50, ‘class’ => ‘c’),
array(‘width’ => 90, ‘class’ => ‘c’),
array(‘width’ => 80, ‘class’ => ‘c’),
array(‘width’ => 50, ‘class’ => ‘r’),
array(‘width’ => 20, ‘class’ => ‘r’),
[U][B]ImageManagementPage.class.php[/B][/U]
L35-L39 - edited the header row to include ID, removed Storage group, and renamed Upload to Upload Date
_(‘Id’),
(‘Image Name’),
//(‘Storage Group’), not used
_(‘O/S’),
_(‘Image Size: ON CLIENT’),
_(‘Image Size: ON SERVER’),
_(‘Uploaded Date’),
_(‘Delete’),
L43-55 - Modified the row templates to show ID, changed href, and array attribute
‘${id}’,
‘<a href="?node=’.$this->node.‘&sub=edit&’.$this->id.‘=${id}" title="’.(‘Notes’).‘: ${description}">${name}</a>’,
//(‘Edit’).‘: ${name} Last uploaded: ${deployed}">${name}</a>’,
//‘${storageGroup}’, not used
‘${os}’,
‘${size}’,
‘${serv_size}’,
‘${deployed}’,
‘<a href="?node=’.$this->node.‘&sub=delete&’.$this->id.‘=${id}" title="’._(‘Delete’).‘"><span class=“icon icon-delete”></span></a>’,
);
// Row attributes
$this->attributes = array(
array(),
array(‘width’ => 50, ‘class’ => ‘c’),
array(),
array(‘width’ => 50, ‘class’ => ‘c’),
array(‘width’ => 50, ‘class’ => ‘c’),
array(‘width’ => 50, ‘class’ => ‘c’),
array(‘class’ => ‘c’, ‘width’ => ‘50’),
[U][B]TaskManagementPage.class.php[/B][/U]
L336: changed Deploy header to Unicast
_(‘Unicast’),
L358: changed title Download to Unicast
$deployLink = ‘<a href="?node=tasks&sub=groupdeploy&type=1&id=’.$Group->get(‘id’).‘"><span class=“icon icon-download” title=“Unicast”></span></a>’;
Thank you for your time