Changeset 7225 for modules/branches/2.5
- Timestamp:
- 11/05/08 11:32:02 (5 years ago)
- Files:
-
- modules/branches/2.5 (modified) (1 prop)
- modules/branches/2.5/dashboard/dashboard.css (modified) (1 diff)
- modules/branches/2.5/dashboard/page.index.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.5
- Property svnmerge-integrated changed from /modules/branches/2.4:1-5852,5908 /modules/branches/2.6:1-7080,7132,7158-7174 to /modules/branches/2.4:1-5852,5908 /modules/branches/2.6:1-7080,7132,7158-7174,7222
modules/branches/2.5/dashboard/dashboard.css
r4721 r7225 35 35 .infobox h3 { 36 36 color: white; 37 margin-bottom:2 ;37 margin-bottom:2px; 38 38 margin-top:3px; 39 39 } modules/branches/2.5/dashboard/page.index.php
r6990 r7225 281 281 global $sysinfo; 282 282 global $astinfo; 283 $out = "<h3>"._("Uptime")."</h3>< /br>";284 $out .= '<table >';283 $out = "<h3>"._("Uptime")."</h3><br />"; 284 $out .= '<table summary="system information table">'; 285 285 /* 286 286 $out .= '<tr><th>Distro:</th><td>'.$sysinfo->distro().'</td></tr>'; … … 405 405 $domid = "notify_item_".str_replace(' ','_',$item['module']).'_'.str_replace(' ','_',$item['id']); 406 406 407 $out .= "\n"; 407 408 $out .= '<li id="'.$domid.'" '; 408 409 if (isset($notify_classes[$item['level']])) { … … 410 411 } 411 412 $out .= '><div>'; 412 413 $out .= '<h4 class="syslog_text">'; 413 414 $out .= '<div class="syslog_text">'; 415 $out .= '<h4>'; 414 416 $out .= '<span><img src="images/'.$notify_classes[$item['level']].'.png" alt="'.$notify_descriptions[$item['level']].'" title="'.$notify_descriptions[$item['level']].'" width="16" height="16" border="0" /> '; 415 417 $out .= $item['display_text'].'</span>'; 418 $out .= '</h4>'; 419 $out .= "\n"; 416 420 $out .= '<div class="notification_buttons">'; 417 421 if (isset($item['candelete']) && $item['candelete']) { … … 426 430 } 427 431 $out .= '</div>'; 428 $out .= '</ h4>';429 432 $out .= '</div>'; 433 $out .= "\n"; 430 434 $out .= '<div class="syslog_detail">'; 431 435 $out .= nl2br($item['extended_text']); … … 499 503 ?> 500 504 501 <script language="javascript">505 <script type="text/javascript"> 502 506 $(document).ready(function(){ 503 507 $.ajaxTimeout( 20000 ); … … 510 514 function makeSyslogClickable() { 511 515 $('#syslog h4 span').click(function() { 512 $(this).parent(). next('div').slideToggle('fast');516 $(this).parent().parent().next('div').slideToggle('fast'); 513 517 }); 514 518 }
