ChangeSet ID: 31246
CVSROOT: /opt/cvs-commit
Module name: appdb
Changes by: wineowner(a)winehq.org 2007/07/10 23:28:21
Modified files:
. : apidb.css
Log message:
Chris Morgan <cmorgan(a)alum.wpi.edu>
Add some padding to the application name cells in the top-X tables so the text isn't right
against the left hand side of the table.
Patch: http://cvs.winehq.org/patch.py?id=31246
Old revision New revision Changes Path
1.19 1.20 +1 -1 appdb/apidb.css
Index: appdb/apidb.css
diff -u -p appdb/apidb.css:1.19 appdb/apidb.css:1.20
--- appdb/apidb.css:1.19 11 Jul 2007 4:28:21 -0000
+++ appdb/apidb.css 11 Jul 2007 4:28:21 -0000
@@ -197,7 +197,7 @@ TD.no { color: #B10000; font-style: ita
TD.stub { color: #0000B1; font-style: italic; text-align: center }
/* width of the application column in the top 'X' lists on the main page */
-TD.app_name { width: 150px }
+TD.app_name { padding:10px; width: 150px }
/* Rating Number */
.rating { font-family: Helvetica, Arial; font-size: 6pt; color: #333333; }
ChangeSet ID: 31245
CVSROOT: /opt/cvs-commit
Module name: appdb
Changes by: wineowner(a)winehq.org 2007/07/10 23:17:02
Modified files:
. : application.css index.php
Log message:
Chris Morgan <cmorgan(a)alum.wpi.edu>
Clean up the appdb main page. Update top-X lists to be inside of colored DIVs so the sections
can be easily distinguished. Remove unnecessary text to make the page easier to read.
Patch: http://cvs.winehq.org/patch.py?id=31245
Old revision New revision Changes Path
1.8 1.9 +5 -0 appdb/application.css
1.49 1.50 +54 -37 appdb/index.php
Index: appdb/application.css
diff -u -p appdb/application.css:1.8 appdb/application.css:1.9
--- appdb/application.css:1.8 11 Jul 2007 4:17: 2 -0000
+++ appdb/application.css 11 Jul 2007 4:17: 2 -0000
@@ -62,3 +62,8 @@ div.info_container { margin:6px; border:
div.info_contents { padding:10px; background-color: #eee; }
div.title_class { font-weight: bold; border-bottom: 1px solid; padding: 4px;
font-size: 140%; background-color: #ddd; }
+
+/* classes for the main page */
+div.rating_header { padding: 8px; }
+div.rating_title { padding-bottom: 4px; font-weight: bold; font-size: 160%; }
+div.topx_style { padding:7px; margin:6px; border:2px solid; }
Index: appdb/index.php
diff -u -p appdb/index.php:1.49 appdb/index.php:1.50
--- appdb/index.php:1.49 11 Jul 2007 4:17: 2 -0000
+++ appdb/index.php 11 Jul 2007 4:17: 2 -0000
@@ -54,9 +54,6 @@ if(!$_SESSION['current']->isLoggedIn())
}
?>
-<p>
-If you have screenshots or links to contribute, please browse the database and use the AppDB interface to send us your contributions (any member can send screenshots; if you want to send how-to's or other information, you can either enroll to be a maintainer or post this information as a comment for the application of interest).
-</p>
<?php
$iNumApps = version::objectGetEntriesCount(false, false);
@@ -84,44 +81,64 @@ If you have screenshots or links to cont
<br /><br />
-<h2>Top Voted Applications</h2>
-
-<p>This is a list of applications that are known to be working well and for which many users have voted.</p>
-
-<h3>The Top-10 <a href="browse_by_rating.php?sRating=Platinum">Platinum</a> List</h3>
-<p>Only applications which install and run flawlessly on an out-of-the-box Wine installation make it to the Platinum list.</p>
-<table class="platinum">
- <tr class="rowtitle">
- <th>Application</th><th>Description</th><th>Screenshot</th>
- </tr>
-<?php
- outputTopXRowAppsFromRating('Platinum', 10);
-?>
-</table>
+<div class="topx_style platinum">
+ <div class="rating_header">
+ <div class="rating_title">
+ Top-10 <a href="browse_by_rating.php?sRating=Platinum">Platinum</a> List
+ </div>
+ Applications which install and run flawlessly on an out-of-the-box Wine installation
+ </div>
+ <div>
+ <table class="platinum">
+ <tr class="rowtitle">
+ <th>Application</th><th>Description</th><th>Screenshot</th>
+ </tr>
+ <?php
+ outputTopXRowAppsFromRating('Platinum', 10);
+ ?>
+ </table>
+ </div>
+</div>
<br />
-<h3>The Top-10 <a href="browse_by_rating.php?sRating=Gold">Gold</a> List</h3>
-<p>Applications that work flawlessly with some DLL overrides or other settings, crack etc. make it to the Gold list.</p>
-<table class="gold">
- <tr class="rowtitle">
- <th>Application</th><th>Description</th><th>Screenshot</th>
- </tr>
-<?php
- outputTopXRowAppsFromRating('Gold', 10);
-?>
-</table>
+<div class="topx_style gold">
+ <div class="rating_header">
+ <div class="rating_title">
+ Top-10 <a href="browse_by_rating.php?sRating=Gold">Gold</a> List
+ </div>
+ Applications that work flawlessly with some special configuration
+ </div>
+ <div>
+ <table class="gold">
+ <tr class="rowtitle">
+ <th>Application</th><th>Description</th><th>Screenshot</th>
+ </tr>
+ <?php
+ outputTopXRowAppsFromRating('Gold', 10);
+ ?>
+ </table>
+ </div>
+</div>
<br />
-<h3>The Top-10 <a href="browse_by_rating.php?sRating=Silver">Silver List</a></h3>
-<p>The Silver list contains apps which we hope we can easily fix so they make it to Gold status.</p>
-<table class=silver>
- <tr class=rowtitle>
- <th>Application</th><th>Description</th><th>Screenshot</th>
- </tr>
-<?php
- outputTopXRowAppsFromRating('Silver', 10);
-?>
-</table>
+<div class="topx_style silver">
+ <div class="rating_header">
+ <div class="rating_title">
+ Top-10 <a href="browse_by_rating.php?sRating=Silver">Silver List</a>
+ </div>
+ Applications with minor issues that do not affect typical usage
+ </div>
+ <div>
+ <table class="silver">
+ <tr class="rowtitle">
+ <th>Application</th><th>Description</th><th>Screenshot</th>
+ </tr>
+ <?php
+ outputTopXRowAppsFromRating('Silver', 10);
+ ?>
+ </table>
+ </div>
+</div>
<br /><br />
ChangeSet ID: 31244
CVSROOT: /opt/cvs-commit
Module name: appdb
Changes by: wineowner(a)winehq.org 2007/07/10 21:41:58
Modified files:
include : sidebar.php
Log message:
Chris Morgan <cmorgan(a)alum.wpi.edu>
Place the 'AppDB' link at the top of the global menu, users may use it to return back to the
main page of the AppDB and having it be the second link makes it more difficult to locate
Patch: http://cvs.winehq.org/patch.py?id=31244
Old revision New revision Changes Path
1.32 1.33 +1 -1 appdb/include/sidebar.php
Index: appdb/include/sidebar.php
diff -u -p appdb/include/sidebar.php:1.32 appdb/include/sidebar.php:1.33
--- appdb/include/sidebar.php:1.32 11 Jul 2007 2:41:58 -0000
+++ appdb/include/sidebar.php 11 Jul 2007 2:41:58 -0000
@@ -11,8 +11,8 @@ function global_sidebar_menu()
global $aClean;
$g = new htmlmenu(APPDB_OWNER." Menu");
- $g->add(APPDB_OWNER, APPDB_OWNER_URL);
$g->add("AppDB", BASE);
+ $g->add(APPDB_OWNER, APPDB_OWNER_URL);
$g->add("Bugzilla", BUGZILLA_ROOT);
$g->add("Wine Wiki", "http://wiki.winehq.org");
$g->done();
Module: wine
Branch: master
Commit: 7f674966e774f083d7cae6e5bcfaa6a32a62a898
URL: http://source.winehq.org/git/wine.git/?a=commit;h=7f674966e774f083d7cae6e5b…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Tue Jul 10 15:22:18 2007 +0200
configure: Add a few more notices for missing packages.
---
configure | 20 ++++++++++++++++++++
configure.ac | 8 ++++++++
2 files changed, 28 insertions(+), 0 deletions(-)
diff --git a/configure b/configure
index 270564b..8567e53 100755
--- a/configure
+++ b/configure
@@ -14442,6 +14442,11 @@ _ACEOF
fi
fi
+if test "x$ac_cv_lib_soname_fontconfig" = "x"; then
+ wine_notices="$wine_notices|fontconfig development files not found.
+Wine will be built without fontconfig support."
+fi
+
if test "$ac_cv_header_openssl_err_h" = "yes" -a "$ac_cv_header_openssl_ssl_h" = "yes"
then
@@ -14602,6 +14607,11 @@ _ACEOF
fi
fi
+if test "x$ac_cv_lib_soname_ssl" = "x"; then
+ wine_notices="$wine_notices|OpenSSL development files not found.
+Wine will be built without SSL support. (wininet.dll)"
+fi
+
if test "$ac_cv_header_jpeglib_h" = "yes"
then
@@ -14684,6 +14694,11 @@ _ACEOF
fi
fi
+if test "x$ac_cv_lib_soname_jpeg" = "x"; then
+ wine_notices="$wine_notices|libjpeg development files not found.
+Wine will be built without JPEG support. (oleaut32.dll)"
+fi
+
if test "$ac_cv_header_png_h" = "yes"
then
@@ -14766,6 +14781,11 @@ _ACEOF
fi
fi
+if test "x$ac_cv_lib_soname_png" = "x"; then
+ wine_notices="$wine_notices|libpng development files not found.
+Wine will be built without PNG support. (oleaut32.dll)"
+fi
+
if test "x$ALSALIBS$AUDIOIOLIBS$COREAUDIO$NASLIBS$ESD_LIBS$ac_cv_lib_soname_jack" = "x" -a \
"$ac_cv_header_sys_soundcard_h" != "yes" -a \
diff --git a/configure.ac b/configure.ac
index a5010c0..227e410 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1032,6 +1032,8 @@ if test "$ac_cv_header_fontconfig_fontconfig_h" = "yes"
then
WINE_CHECK_SONAME(fontconfig,FcInit)
fi
+WINE_NOTICE_IF([test "x$ac_cv_lib_soname_fontconfig" = "x"],[fontconfig development files not found.
+Wine will be built without fontconfig support.])
dnl **** Check for SSL ****
if test "$ac_cv_header_openssl_err_h" = "yes" -a "$ac_cv_header_openssl_ssl_h" = "yes"
@@ -1039,18 +1041,24 @@ then
WINE_CHECK_SONAME(ssl,SSL_library_init)
WINE_CHECK_SONAME(crypto,BIO_new_socket)
fi
+WINE_NOTICE_IF([test "x$ac_cv_lib_soname_ssl" = "x"],[OpenSSL development files not found.
+Wine will be built without SSL support. (wininet.dll)])
dnl **** Check for libjpeg ****
if test "$ac_cv_header_jpeglib_h" = "yes"
then
WINE_CHECK_SONAME(jpeg,jpeg_start_decompress)
fi
+WINE_NOTICE_IF([test "x$ac_cv_lib_soname_jpeg" = "x"],[libjpeg development files not found.
+Wine will be built without JPEG support. (oleaut32.dll)])
dnl **** Check for libpng ****
if test "$ac_cv_header_png_h" = "yes"
then
WINE_CHECK_SONAME(png,png_create_read_struct,,,,[[libpng[[0-9]]*]])
fi
+WINE_NOTICE_IF([test "x$ac_cv_lib_soname_png" = "x"],[libpng development files not found.
+Wine will be built without PNG support. (oleaut32.dll)])
dnl **** Check for any sound system ****
WINE_WARNING_IF([test "x$ALSALIBS$AUDIOIOLIBS$COREAUDIO$NASLIBS$ESD_LIBS$ac_cv_lib_soname_jack" = "x" -a \