Changeset 5273
- Timestamp:
- 11/23/07 21:29:59 (5 years ago)
- Files:
-
- modules/branches/2.3 (modified) (1 prop)
- modules/branches/2.3/dashboard/module.xml (modified) (3 diffs)
- modules/branches/2.3/dashboard/phpsysinfo/class.Linux.inc.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.3
- Property svnmerge-integrated changed from /modules/branches/2.2:1-3588,3615-3635,3637-3638,3640,3674,3680,3686,3692,3702,3706,3710,3716,3758,3760,3762-3765,3767-3785,3787-3789,3801,3810,3828,3831,3839,3860,3866,3875,3877,3887,3899,3911,3913,3943,3982-3983,3990,3998,4007,4022-4023,4089,4092,4098,4265,4285 /modules/branches/2.4:1-5079,5090,5093,5097-5118,5120-5170,5172,5174,5176-5182,5184-5199,5202-5203,5205-5211,5239 to /modules/branches/2.2:1-3588,3615-3635,3637-3638,3640,3674,3680,3686,3692,3702,3706,3710,3716,3758,3760,3762-3765,3767-3785,3787-3789,3801,3810,3828,3831,3839,3860,3866,3875,3877,3887,3899,3911,3913,3943,3982-3983,3990,3998,4007,4022-4023,4089,4092,4098,4265,4285 /modules/branches/2.4:1-5079,5090,5093,5097-5118,5120-5170,5172,5174,5176-5182,5184-5199,5202-5203,5205-5211,5239,5271-5272
modules/branches/2.3/dashboard/module.xml
r4889 r5273 2 2 <rawname>dashboard</rawname> 3 3 <name>System Dashboard</name> 4 <version>0.3.3. 1</version>4 <version>0.3.3.2</version> 5 5 <candisable>no</candisable> 6 6 <canuninstall>no</canuninstall> … … 18 18 </depends> 19 19 <changelog> 20 *0.3.3.2* #2469 fix division my zero in cpu usage 20 21 *0.3.3.1* Cosmetic fix (#2278 - long mount point paths) 21 22 *0.3.3* Improved detection of webserver failing, More MySQL detection fixes … … 36 37 *0.1.0* Initial release 37 38 </changelog> 38 <location>release/2. 3/dashboard-0.3.3.1.tgz</location>39 <md5sum> 6346813086933063e70d004b20059924</md5sum>39 <location>release/2.4/dashboard-0.3.3.2.tgz</location> 40 <md5sum>913befd1d633fa4f884ec409db410a71</md5sum> 40 41 </module> modules/branches/2.3/dashboard/phpsysinfo/class.Linux.inc.php
r4523 r5273 133 133 $load2 = $ab + $ac + $ad; 134 134 $total2 = $ab + $ac + $ad + $ae; 135 $results['cpupercent'] = ( 100*($load2 - $load)) / ($total2 - $total);135 $results['cpupercent'] = ($total2 != $total)?((100*($load2 - $load)) / ($total2 - $total)):0; 136 136 } 137 137 }
