Revision: 5338 Author: pebender Date: Sat Aug 22 09:32:05 2009 Log: - Fixed bug that caused the frontend's webpage to not display the output of /proc/loadavg.
http://code.google.com/p/minimyth/source/detail?r=5338 Modified: /trunk/gar-minimyth/html/minimyth/document-changelog.txt /trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/srv/www/cgi-bin/mm_webpage.pm /trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/srv/www/cgi-bin/status.cgi ======================================= --- /trunk/gar-minimyth/html/minimyth/document-changelog.txt Sat Aug 22 08:51:58 2009 +++ /trunk/gar-minimyth/html/minimyth/document-changelog.txt Sat Aug 22 09:32:05 2009 @@ -30,6 +30,8 @@ Fixed bugs - Patched MythStream in MythTV trunk so that it uses QX11Info::display instead of qt_xdisplay(). + - Fixed bug that caused the frontend's webpage to not display the output + of /proc/loadavg. Modified build system - Added the Graphite theme to MythTV trunk. ======================================= --- /trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/srv/www/cgi-bin/mm_webpage.pm Sat May 30 20:30:32 2009 +++ /trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/srv/www/cgi-bin/mm_webpage.pm Sat Aug 22 09:32:05 2009 @@ -91,7 +91,7 @@ push(@page, q( alt="Valid CSS!" height="31" width="88" /></a>)); push(@page, q( </div>)); push(@page, q( <div class="version">)); - push(@page, q( Last Updated on 2009-05-30)); + push(@page, q( Last Updated on 2009-08-22)); push(@page, q( <br />)); push(@page, q( < mailto : webmaster at minimyth dot org >)); push(@page, q( </div>)); ======================================= --- /trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/srv/www/cgi-bin/status.cgi Mon Jan 5 21:37:01 2009 +++ /trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/srv/www/cgi-bin/status.cgi Sat Aug 22 09:32:05 2009 @@ -46,7 +46,7 @@ my $status_loads_head = q(Loads (output of file "/proc/loadavg")); my @status_loads_body = (); -if (-e 'proc/loadavg') +if (-e '/proc/loadavg') { if (open(FILE, '<', '/proc/loadavg')) { --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "minimyth-commits" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/minimyth-commits?hl=en -~----------~----~----~----~------~----~------~--~---
