X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=planetlab%2Fsites%2Fsite.php;h=dc10a90ee7b61f5dd01d23c2614d8d7f970e02ee;hb=1ce86fd37ce8da9b475847a59394c0241a8dbbff;hp=be4d5fb713e0dc853c5a833555c6935dbd3be4ac;hpb=c35e8e6e594f4941a5cee131b29170bc0e3d34e5;p=plewww.git diff --git a/planetlab/sites/site.php b/planetlab/sites/site.php index be4d5fb..dc10a90 100644 --- a/planetlab/sites/site.php +++ b/planetlab/sites/site.php @@ -48,6 +48,7 @@ $max_slivers= $site['max_slivers']; $max_slices= $site['max_slices']; $enabled = $site['enabled']; +$ext_consortium_id = $site ['ext_consortium_id']; // get peer $peer_id= $site['peer_id']; @@ -92,7 +93,7 @@ else $techs = array(); $pis = array(); $disabled_persons = array(); -foreach( $persons as $person ) { +if ($persons) foreach( $persons as $person ) { $role_ids= $person['role_ids']; if ( in_array( '20', $role_ids )) $pis[] = $person; @@ -112,6 +113,8 @@ drupal_set_title("Details for site " . $sitename); $tabs=array(); +$tabs []= tab_mysite(); + // available actions if ( $is_site_admin) $tabs['Expire slices'] = array('url'=>l_actions(), @@ -148,16 +151,28 @@ plekit_linetabs($tabs); // show gray background on foreign objects : start a
with proper class $peers->block_start ($peer_id); -if ( $local_peer && ( ! $enabled ) ) - plc_warning ("This site is not enabled - Please visit " . - href (l_sites_pending(),"this page") . - " to review pending applications."); +// sanity checks +if ( $local_peer ) { + // pending site + global $PENDING_CONSORTIUM_ID; + if ( $ext_consortium_id === $PENDING_CONSORTIUM_ID) { + if ( ! $enabled ) + plc_warning ("This site is under pending registration - Please visit " . + href (l_sites_pending(),"this page") . + " to review pending applications."); + else + plc_warning ("This site is pending but is also enabled - something is wrong. You should fix the issue with plcsh"); + } else { + if ( ! $enabled) + plc_warning ("This site is disabled."); + } +} $can_update=(plc_is_admin () && $local_peer) || ( plc_in_site($site_id) && plc_is_pi()); $toggle = new PlekitToggle ('site',"Details", - array('visible'=>get_arg('show_details',true), + array('visible'=>get_arg('show_details'), 'bubble'=>'Display and modify details for that site')); $toggle->start(); @@ -222,7 +237,7 @@ if ( $local_peer ) { $nodes_title .= href(l_nodes_site($site_id)," (See as nodes)"); $toggle=new PlekitToggle ('nodes',$nodes_title, - array('visible'=>get_arg('show_nodes',true))); + array('visible'=>get_arg('show_nodes'))); $toggle->start(); $headers=array(); @@ -249,7 +264,7 @@ if ( $local_peer ) { if (empty($ports)) return plc_error_html('???'); $port=$ports[0]; $pcu=$pcu_hash[$pcu_id]; - $display= $pcu['hostname'] . ' : ' . $port; + $display= l_pcu_href($pcu_id, $pcu['hostname'] . ' : ' . $port); $pcu_hash[$pcu_id]['displayed']=true; return $display; } @@ -295,7 +310,7 @@ if ( $local_peer ) { $persons_title .= href(l_persons_site($site_id)," (See as users)"); $toggle=new PlekitToggle ('persons',$persons_title, - array('visible'=>get_arg('show_persons',false))); + array('visible'=>get_arg('show_persons'))); $toggle->start(); $headers = array (); @@ -333,7 +348,7 @@ if ( $local_peer ) { $slices_title .= href(l_slices_site($site_id)," (See as slices)"); $toggle=new PlekitToggle ('slices',$slices_title, - array('visible'=>get_arg('show_slices',false))); + array('visible'=>get_arg('show_slices'))); $toggle->start(); $headers = array (); @@ -369,7 +384,7 @@ if ( $local_peer ) { //////////////////// Addresses $toggle=new PlekitToggle ('addresses',"Addresses", - array('visible'=>get_arg('show_addresses',false))); + array('visible'=>get_arg('show_addresses'))); $toggle->start(); if ( ! $addresses) { print "

No known address for this site

";