From ac6d8edca77f3fb4ed0dce7cd5e94350492bcf3b Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Thu, 4 Sep 2014 05:36:09 +0100 Subject: [PATCH] 2009/10/10 23:51:46 +0100 sbrady: s/Wine/QEMU/, s/AppDB/OS DB/, s/Application/OS/ in text --- account.php | 11 ++-- appdbStats.php | 6 +- contact.php | 4 +- include/application.php | 104 +++++++++++++++++----------------- include/application_queue.php | 8 +-- include/bugs.php | 2 +- include/comment.php | 2 +- include/distribution.php | 8 +-- include/form_new.php | 2 +- include/header.php | 5 +- include/incl.php | 2 +- include/mail.php | 4 +- include/maintainer.php | 62 ++++++++++---------- include/maintainerView.php | 10 ++-- include/objectManager.php | 2 +- include/query.php | 2 +- include/screenshot.php | 2 +- include/testData.php | 52 +++++++++-------- include/url.php | 4 +- include/user.php | 4 +- include/version.php | 16 +++--- include/version_queue.php | 2 +- index.php | 6 +- scripts.js | 10 ++-- site_outage.html | 8 +-- 25 files changed, 176 insertions(+), 162 deletions(-) diff --git a/account.php b/account.php index eaeadf2..c7a1460 100644 --- a/account.php +++ b/account.php @@ -122,7 +122,7 @@ function cmd_do_new() retry("new", "Failed to create account"); } else { - addmsg("Unknown failure while creating new user. Please report this problem to appdb admins.", "red"); + addmsg("Unknown failure while creating new user. Please report this problem to OS DB admins.", "red"); retry("new", "Failed to create account"); } } @@ -144,8 +144,11 @@ function cmd_send_passwd() util_redirect_and_exit(apidb_fullurl("account.php?sCmd=login")); } - $shNote = '(Note: accounts for appdb.winehq.org and bugs.winehq.org ' - .'are separated, so You might need to create second account for appdb.)'; +/* + $shNote = '(Note: accounts for the OS DB and bugs.claunia.com ' + .'are separated, so You might need to create second account for OS DB.)'; +*/ + $shNote = ''; $iUserId = User::exists($aClean['sUserEmail']); $sPasswd = User::generate_passwd(); @@ -154,7 +157,7 @@ function cmd_send_passwd() { if ($oUser->update_password($sPasswd)) { - $sSubject = "Application DB Lost Password"; + $sSubject = "OS DB Lost Password"; $sMsg = "We have received a request that you lost your password.\r\n"; $sMsg .= "We will create a new password for you. You can then change\r\n"; $sMsg .= "your password at the Preferences screen.\r\n"; diff --git a/appdbStats.php b/appdbStats.php index 0915839..a89404f 100644 --- a/appdbStats.php +++ b/appdbStats.php @@ -7,7 +7,7 @@ require("path.php"); require(BASE."include/incl.php"); require_once(BASE."include/user.php"); -apidb_header("Appdb Statistics"); +apidb_header("OS DB Statistics"); echo "
\n"; @@ -59,7 +59,7 @@ echo "\n\n"; /* Display the number of application familes */ echo "\n"; -echo " Application families:\n"; +echo " OS families:\n"; echo " ".application::objectGetEntriesCount('accepted')."\n"; echo "\n\n"; @@ -71,7 +71,7 @@ echo "\n\n"; /* Display the number of application maintainers */ echo "\n"; -echo " Application maintainers:\n"; +echo " OS maintainers:\n"; echo " ".Maintainer::getNumberOfMaintainers()."\n"; echo "\n\n"; diff --git a/contact.php b/contact.php index 06757c6..3209a25 100644 --- a/contact.php +++ b/contact.php @@ -139,13 +139,13 @@ if(!$aClean['sSubmit']) $sSubjectRe = urlencode($sSubjectRe); $sMsg = "The following message was sent to you from $oUser->sRealname "; - $sMsg .= "through the Wine AppDB contact form.\nTo Reply, visit "; + $sMsg .= "through the QEMU OS DB contact form.\nTo Reply, visit "; $sMsg .= APPDB_ROOT."contact.php?iRecipientId=$oUser->iUserId&sSubject="; $sMsg .= $sSubjectRe."\n\n"; $sMsg .= $aClean['sMessage']; } else { - $sMsg = "The following message was sent to you by the AppDB admins:\n\n"; + $sMsg = "The following message was sent to you by the OS DB admins:\n\n"; $sMsg .= $aClean['sMessage']; } diff --git a/include/application.php b/include/application.php index d2b4a89..3649b24 100644 --- a/include/application.php +++ b/include/application.php @@ -160,7 +160,7 @@ class Application { $oMaintainer = new Maintainer(); $oMaintainer->iAppId = $this->iAppId; $oMaintainer->iUserId = $_SESSION['current']->iUserId; - $oMaintainer->sMaintainReason = "This user submitted the application; auto-queued."; + $oMaintainer->sMaintainReason = "This user submitted the OS; auto-queued."; $oMaintainer->bSuperMaintainer = 1; $oMaintainer->create(); } @@ -168,7 +168,7 @@ class Application { return true; } else { - addmsg("Error while creating a new application.", "red"); + addmsg("Error while creating a new OS.", "red"); return false; } } @@ -349,7 +349,7 @@ class Application { $this->SendNotificationMail("reject"); // the application has been rejected - addmsg("The application has been rejected.", "green"); + addmsg("The OS has been rejected.", "green"); } } @@ -373,7 +373,7 @@ class Application { $this->SendNotificationMail(); // the application has been re-queued - addmsg("The application has been re-queued.", "green"); + addmsg("The OS has been re-queued.", "green"); } } @@ -394,8 +394,8 @@ class Application { switch($sAction) { case "delete": - $sSubject = "Submitted application deleted"; - $sMsg = "The application you submitted (".$this->sName. + $sSubject = "Submitted OS deleted"; + $sMsg = "The OS you submitted (".$this->sName. ") has been deleted."; break; } @@ -406,7 +406,7 @@ class Application { { case "delete": $sSubject = $this->sName." deleted"; - $sMsg = "The application '".$this->sName."' has been deleted."; + $sMsg = "The OS '".$this->sName."' has been deleted."; break; } $aMailTo = User::get_notify_email_address_list($this->iAppId); @@ -426,24 +426,24 @@ class Application { switch($sAction) { case "add": - $sSubject = "Submitted application accepted"; - $sMsg = "The application you submitted (".$this->sName.") has been accepted by ".$_SESSION['current']->sRealname.".\n"; + $sSubject = "Submitted OS accepted"; + $sMsg = "The OS you submitted (".$this->sName.") has been accepted by ".$_SESSION['current']->sRealname.".\n"; $sMsg .= "Administrator's Response:\n"; break; case "reject": - $sSubject = "Submitted application rejected"; - $sMsg = "The application you submitted (".$this->sName.") has been rejected by ".$_SESSION['current']->sRealname."."; - $sMsg .= "Clicking on the link in this email will allow you to modify and resubmit the application. "; - $sMsg .= "A link to your queue of applications and versions will also show up on the left hand side of the Appdb site once you have logged in. "; + $sSubject = "Submitted OS rejected"; + $sMsg = "The OS you submitted (".$this->sName.") has been rejected by ".$_SESSION['current']->sRealname."."; + $sMsg .= "Clicking on the link in this email will allow you to modify and resubmit the OS. "; + $sMsg .= "A link to your queue of OSes and versions will also show up on the left hand side of the OS DB site once you have logged in. "; $sMsg .= APPDB_ROOT."objectManager.php?sClass=application_queue". "&bIsQueue=true&bIsRejected=true&iId=".$this->iAppId."&sTitle=". - "Edit+Application\n"; + "Edit+OS\n"; $sMsg .= "Reason given:\n"; break; } $sMsg .= $aClean['sReplyText']."\n"; - $sMsg .= "We appreciate your help in making the Application Database better for all users."; + $sMsg .= "We appreciate your help in making the Operating Systems Database better for all users."; mail_appdb($oSubmitter->sEmail, $sSubject ,$sMsg); } @@ -502,34 +502,34 @@ class Application { if($this->iSubmitterId) { $oSubmitter = new User($this->iSubmitterId); - $sMsg .= "This application has been submitted by ".$oSubmitter->sRealname."."; + $sMsg .= "This OS has been submitted by ".$oSubmitter->sRealname."."; $sMsg .= "\n"; } if($aClean['sReplyText']) { - $sMsg .= "Appdb admin reply text:\n"; + $sMsg .= "OS DB admin reply text:\n"; $sMsg .= $aClean['sReplyText']."\n"; // append the reply text, if there is any } - addmsg("The application was successfully added into the database.", "green"); + addmsg("The OS was successfully added into the database.", "green"); } else { $sSubject = $this->sName." has been submitted by ".$_SESSION['current']->sRealname; - $sMsg .= "This application has been queued."; + $sMsg .= "This OS has been queued."; $sMsg .= "\n"; - addmsg("The application you submitted will be added to the database after being reviewed.", "green"); + addmsg("The OS you submitted will be added to the database after being reviewed.", "green"); } break; case "edit": $sSubject = $this->sName." has been modified by ".$_SESSION['current']->sRealname; $sMsg .= $this->objectMakeUrl()."\n"; - addmsg("Application modified.", "green"); + addmsg("OS modified.", "green"); break; case "reject": $sSubject = $this->sName." has been rejected by ".$_SESSION['current']->sRealname; $sMsg .= APPDB_ROOT."objectManager.php?sClass=application_queue". "&bIsQueue=true&bIsRejected=true&iId=".$this->iAppId."&sTitle=". - "Edit+Application\n"; + "Edit+OS\n"; // if sReplyText is set we should report the reason the application was rejected if($aClean['sReplyText']) @@ -538,7 +538,7 @@ class Application { $sMsg .= $aClean['sReplyText']."\n"; // append the reply text, if there is any } - addmsg("Application rejected.", "green"); + addmsg("OS rejected.", "green"); break; } $sEmail = User::get_notify_email_address_list($this->iAppId); @@ -562,9 +562,9 @@ class Application { name and the full editor displayed here */ echo ''."\n"; - echo html_frame_start("Application Form", "90%", "", 0); + echo html_frame_start("OS Form", "90%", "", 0); echo "\n"; - echo '',"\n"; + echo '',"\n"; echo '',"\n"; // app Category @@ -585,7 +585,7 @@ class Application { echo '',"\n"; $oVendor = new vendor($this->iVendorId); - $sVendorHelp = "The developer of the application. "; + $sVendorHelp = "The developer of the OS. "; if(!$this->iAppId || $oVendor->objectGetState() != 'accepted') { if(!$this->iAppId) @@ -626,7 +626,7 @@ class Application { echo '',"\n"; echo '',"\n"; - echo '',"\n"; + echo '',"\n"; echo '',"\n"; @@ -642,7 +642,7 @@ class Application { "I would like to be a maintainer of the new version only
\n". "". - "I would like to be a maintainer of the entire application
\n"; + "I would like to be a maintainer of the entire OS
\n"; $sMaintainerOptionsSelected = str_replace( "value=\"$this->iMaintainerRequest\"", @@ -665,20 +665,20 @@ class Application { $errors = ""; if (empty($aValues['iAppCatId'])) - $errors .= "
  • Please enter a category for your application.
  • \n"; + $errors .= "
  • Please enter a category for your OS.
  • \n"; if (strlen($aValues['sAppName']) > 200 ) - $errors .= "
  • Your application name is too long.
  • \n"; + $errors .= "
  • Your OS name is too long.
  • \n"; if (empty($aValues['sAppName'])) - $errors .= "
  • Please enter an application name.
  • \n"; + $errors .= "
  • Please enter an OS name.
  • \n"; // No vendor entered, and nothing in the list is selected if (empty($aValues['sVendorName']) && !$aValues['iAppVendorId']) $errors .= "
  • Please enter a developer.
  • \n"; if (empty($aValues['shAppDescription'])) - $errors .= "
  • Please enter a description of your application.
  • \n"; + $errors .= "
  • Please enter a description of your OS.
  • \n"; return $errors; } @@ -716,7 +716,7 @@ class Application { echo "
    Application name
    OS name
    Keywords
    Application description (In your own words)
    OS description (In your own words)

    \n\n"; echo "\n"; - echo " \n"; + echo " \n"; echo " \n"; echo "\n\n"; @@ -837,7 +837,7 @@ class Application { if($_SESSION['current']->isSuperMaintainer($this->iAppId) || $_SESSION['current']->hasPriv("admin")) { - echo ' '; + echo ' '; echo ''; echo ''; echo ''; @@ -876,7 +876,7 @@ class Application { echo "\t\n"; // close the 'info_contents' div echo "\n"; // close the 'info_container' div - echo html_frame_end("For more details and user comments, view the versions of this application."); + echo html_frame_end("For more details and user comments, view the versions of this OS."); // display versions Version::displayList($this->getVersions()); @@ -917,7 +917,7 @@ class Application { $oTable->SetAlign("center"); $oTableRow = new TableRow(); - $oTableRow->AddTextCell("Application"); + $oTableRow->AddTextCell("OS"); $oTableRow->AddTextCell("Description"); $oTableRow->AddTextCell("Developer"); $oTableRow->AddTextCell("Submission Date"); @@ -957,7 +957,7 @@ class Application { public function objectGetClassDisplayName() { - return 'application'; + return 'OS'; } public function objectMakeUrl() @@ -1098,7 +1098,7 @@ class Application { $aWineVersionIds = get_bugzilla_version_ids(); $oFilter->AddFilterInfo('appVersion.rating', 'Rating', array(FILTER_EQUALS), FILTER_VALUES_ENUM, array('Platinum', 'Gold', 'Silver', 'Bronze', 'Garbage')); - $oFilter->AddFilterInfo('versions.id', 'Wine version', array(FILTER_EQUALS,FILTER_LESS_THAN,FILTER_GREATER_THAN), FILTER_VALUES_ENUM, $aWineVersionIds, $aWineVersions); + $oFilter->AddFilterInfo('versions.id', 'QEMU version', array(FILTER_EQUALS,FILTER_LESS_THAN,FILTER_GREATER_THAN), FILTER_VALUES_ENUM, $aWineVersionIds, $aWineVersions); $oFilter->AddFilterInfo('appCategory', 'Category', array(FILTER_OPTION_ENUM), FILTER_VALUES_OPTION_ENUM, $aCatIds, $aCatNames); $oFilter->AddFilterInfo('appVersion.license', 'License', array(FILTER_EQUALS), FILTER_VALUES_ENUM, $aLicenses); $oFilter->AddFilterInfo('appFamily.appName', 'Name', array(FILTER_CONTAINS, FILTER_STARTS_WITH, FILTER_ENDS_WITH), FILTER_VALUES_NORMAL); @@ -1197,7 +1197,7 @@ class Application { public function objectDisplayQueueProcessingHelp() { - echo "

    This is the list of application entries waiting to be processed.

    \n"; + echo "

    This is the list of OS entries waiting to be processed.

    \n"; echo "

    To view and process an entry, use the links under ‘Action’

    "; } @@ -1206,36 +1206,38 @@ class Application { /* We don't display the full help on the page where you only input the app name */ if(!$this->sName) { - echo "

    First, please enter the name of the application you wish to add. "; + echo "

    First, please enter the name of the OS you wish to add. "; echo "This will allow you to determine whether there is already "; echo "an entry for it in the database.

    \n"; } else { - echo "

    This page is for submitting new applications to be added to the\n"; - echo "database. The application will be reviewed by an AppDB Administrator,\n"; + echo "

    This page is for submitting new OSes to be added to the\n"; + echo "database. The OS will be reviewed by an OS DB Administrator,\n"; echo "and you will be notified via e-mail if it is added to the database or rejected.

    \n"; echo "

    Before continuing, please ensure that you have

    \n"; echo "

    "; +/* echo "

    Having app descriptions just sponsoring the app\n"; echo "(yes, some vendors want to use the appdb for this) or saying ‘I haven't tried this app with Wine’ "; - echo "will not help Wine development or Wine users. Application descriptions should be exactly that and only that, \n"; + echo "will not help Wine development or Wine users. OS descriptions should be exactly that and only that, \n"; echo "they should not contain any information about how well the app works, just what the app is. The same applies to the \n"; - echo "version information, it should be only information on what is unique or different about that version of the application, \n"; + echo "version information, it should be only information on what is unique or different about that version of the OS, \n"; echo "not how well that version works or how great you think a new feature is.

    \n"; +*/ echo "

    When you reach the \"Test Form\" part (What works, What doesn't work, etc) please be detailed \n"; echo "about how well it worked and if any workarounds were needed but do NOT paste chunks of terminal output.

    \n"; echo "

    Please write information in proper English with correct grammar and punctuation!

    \n"; - echo "Please only submit applications/versions that you have tested.\n"; + echo "Please only submit OSes/versions that you have tested.\n"; echo "Submissions without test information or not using the provided template will be rejected.\n"; echo "If you are unable to see the in-browser editors below, please try Firefox, Mozilla or Opera browsers.\n"; - echo "

    After your application has been added, you will be able to submit screenshots for it, post"; - echo " messages in its forums or become a maintainer to help others trying to run the application.

    "; + echo "

    After your OS has been added, you will be able to submit screenshots for it, post"; + echo " messages in its forums or become a maintainer to help others trying to run the OS.

    "; } } diff --git a/include/application_queue.php b/include/application_queue.php index 44d4901..3e67596 100644 --- a/include/application_queue.php +++ b/include/application_queue.php @@ -199,7 +199,7 @@ class application_queue { echo "
    \n"; echo "
    \n"; - echo "Application name:\n"; + echo "OS name:\n"; echo "
    \n"; echo "
    \n"; echo "
    \n"; @@ -210,7 +210,7 @@ class application_queue } else { /* Show potential duplicates */ - echo html_frame_start("Potential duplicate applications in the ". + echo html_frame_start("Potential duplicate OSes in the ". "database","90%","",0); $this->displayDuplicates(); echo html_frame_end(" "); @@ -248,7 +248,7 @@ class application_queue else $shPreviewApp = ' checked="checked"'; - echo " Preview application
    \n"; + echo " Preview OS
    \n"; echo " Preview version\n"; echo html_frame_end(); } @@ -311,7 +311,7 @@ class application_queue } $aHeader = array( - "Application name", + "OS name", "Description", "No. versions" ); diff --git a/include/bugs.php b/include/bugs.php index 4318c46..5fa8530 100644 --- a/include/bugs.php +++ b/include/bugs.php @@ -238,7 +238,7 @@ class Bug $sAppName." has been deleted."; } $sMsg .= $aClean['sReplyText']."\n"; - $sMsg .= "We appreciate your help in making the Application Database better for all users."; + $sMsg .= "We appreciate your help in making the Operating Systems Database better for all users."; mail_appdb($oSubmitter->sEmail, $sSubject ,$sMsg); } diff --git a/include/comment.php b/include/comment.php index a999e41..ee54613 100644 --- a/include/comment.php +++ b/include/comment.php @@ -647,7 +647,7 @@ class Comment { if( $messageCount > 0 ) { - echo '

    The following comments are owned by whoever posted them. WineHQ is not responsible for what they say.

    '."\n"; + echo '

    The following comments are owned by whoever posted them. claunia.com is not responsible for what they say.

    '."\n"; } //start comments diff --git a/include/distribution.php b/include/distribution.php index 354e585..2d2715f 100644 --- a/include/distribution.php +++ b/include/distribution.php @@ -382,7 +382,7 @@ class distribution { } break; } - $sMsg .= "We appreciate your help in making the Application Database better for all users."; + $sMsg .= "We appreciate your help in making the Operating Systems Database better for all users."; mail_appdb($oSubmitter->sEmail, $sSubject ,$sMsg); } @@ -406,7 +406,7 @@ class distribution { $oSubmitter = new User($this->iSubmitterId); $sMsg .= "This Distribution has been submitted by ".$oSubmitter->sRealname."."; $sMsg .= "\n"; - $sMsg .= "Appdb admin reply text:\n"; + $sMsg .= "OS DB admin reply text:\n"; $sMsg .= $aClean['sReplyText']."\n"; // append the reply text, if there is any } addmsg("The Distribution was successfully added into the database.", "green"); @@ -681,10 +681,10 @@ class distribution { echo '
    Application NameOS NameDescription
    ',"\n"; echo '',"\n"; echo '',"\n"; - echo '',"\n"; + echo '',"\n"; echo '',"\n"; echo '',"\n"; - echo '',"\n"; + echo '',"\n"; echo '',"\n"; echo '',"\n"; echo '',"\n"; diff --git a/include/form_new.php b/include/form_new.php index 1906225..da6989f 100644 --- a/include/form_new.php +++ b/include/form_new.php @@ -23,7 +23,7 @@ The password will be sent to your e-mail "; diff --git a/include/header.php b/include/header.php index 380582d..929af29 100644 --- a/include/header.php +++ b/include/header.php @@ -12,7 +12,7 @@ - + @@ -27,6 +27,9 @@ +
    + +
    diff --git a/include/incl.php b/include/incl.php index 624b7b1..e3d6159 100644 --- a/include/incl.php +++ b/include/incl.php @@ -22,7 +22,7 @@ require_once(BASE."include/objectManager.php"); if(get_magic_quotes_gpc()) { echo "Please disable the magic quotes GPC PHP setting. See this page for more information

    "; - echo "AppDB php code assumes magic quotes are disabled.

    "; + echo "OS DB php code assumes magic quotes are disabled.

    "; echo "Magic quotes are a bad idea for a few reasons.

    "; echo "First is that php calls addslashes() on all \$_POST, \$_REQUEST and cookie variables "; echo "if magic quotes is enabled. "; diff --git a/include/mail.php b/include/mail.php index 8bff3dc..1af0575 100644 --- a/include/mail.php +++ b/include/mail.php @@ -19,7 +19,7 @@ function mail_appdb($sEmailList,$sSubject,$sMsg) $sMsg = trim(ereg_replace("\r\n","\n",$sMsg)); $sMsg = $sSubject."\n-------------------------------------------------------\n".$sMsg."\n\n"; $sMsg .= "Best regards.\n"; - $sMsg .= "The QEMU team\n"; + $sMsg .= "The QEMU OS Database team\n"; $sMsg .= APPDB_ROOT."\n"; $sMsg .= "\n\nIf you don't want to receive any other e-mail, please change your preferences:\n"; $sMsg .= APPDB_ROOT."preferences.php\n"; @@ -37,7 +37,7 @@ function mail_appdb($sEmailList,$sSubject,$sMsg) } $sMsg = html_entity_decode($sMsg); - $bResult = mail(APPDB_SENDER_EMAIL, "[QEMU OSDB] ".$sSubject, $sMsg, $sHeaders, + $bResult = mail(APPDB_SENDER_EMAIL, "[QEMU OS DB] ".$sSubject, $sMsg, $sHeaders, "-f".APPDB_SENDER_EMAIL); if($bResult) addmsg("E-mail sent", "green"); diff --git a/include/maintainer.php b/include/maintainer.php index 68ea055..79ae93b 100644 --- a/include/maintainer.php +++ b/include/maintainer.php @@ -276,11 +276,11 @@ class maintainer $sName = $oApp->sName; } - $sSubject = "Application Maintainer Request Report"; + $sSubject = "OS Maintainer Request Report"; $sMsg = "Your application to be the maintainer of $sName has been accepted.\n"; $sMsg .= "$sURL\n"; $sMsg .= "$this->sReplyText\n"; - $sMsg .= "We appreciate your help in making the Application Database better for all users.\n\n"; + $sMsg .= "We appreciate your help in making the Operating Systems Database better for all users.\n\n"; mail_appdb($sEmail, $sSubject ,$sMsg); } @@ -292,9 +292,9 @@ class maintainer query_parameters("DELETE from appMaintainers WHERE userId = '?' AND maintainerId = '?' AND state = 'queued'", $this->iUserId, $this->iMaintainerId); if($oUser->isSuperMaintainer($this->iAppId) && !$this->bSuperMaintainer) - $sStatusMessage = "

    User is already a super maintainer of this application

    \n"; + $sStatusMessage = "

    User is already a super maintainer of this OS

    \n"; else - $sStatusMessage = "

    User is already a maintainer/super maintainer of this application/version

    \n"; + $sStatusMessage = "

    User is already a maintainer/super maintainer of this OS/version

    \n"; } /* Delete any maintainer entries the user had for the application's versions, @@ -313,11 +313,11 @@ class maintainer { $oApp = new Application($oRow->appId); $oVersion = new Version($oRow->versionId); - $sSubject = "Application Maintainer Request Report"; + $sSubject = "OS Maintainer Request Report"; $sMsg = "Your application to be the maintainer of ".$oApp->sName." ".$oVersion->sName." was rejected. "; $sMsg .= $this->sReplyText; $sMsg .= ""; - $sMsg .= "-The AppDB admins\n"; + $sMsg .= "-The OS DB admins\n"; mail_appdb($sEmail, $sSubject ,$sMsg); } @@ -640,7 +640,7 @@ class maintainer { $oTableRow = new TableRow(); $oTableRow->AddTextCell("Submission Date"); - $oTableRow->AddTextCell("Application Name"); + $oTableRow->AddTextCell("OS Name"); $oTableRow->AddTextCell("Version"); $oTableRow->AddTextCell("Super maintainer?"); $oTableRow->AddTextCell("Submitter"); @@ -667,23 +667,23 @@ class maintainer function objectDisplayAddItemHelp($aClean) { - echo "

    This page is for submitting a request to become an application maintainer.\n"; - echo "An application maintainer is someone who runs the application \n"; + echo "

    This page is for submitting a request to become an OS maintainer.\n"; + echo "An OS maintainer is someone who runs the OS \n"; echo "regularly and who is willing to be active in reporting regressions with newer \n"; - echo "versions of Wine and to help other users run this application under Wine.

    "; - echo "

    Being an application maintainer comes with new rights and new responsibilities; please be sure to read the maintainer's guidelines before to proceed.

    "; - echo "

    We ask that all maintainers explain why they want to be an application maintainer,\n"; + echo "versions of QEMU and to help other users run this OS under QEMU.

    "; + echo "

    Being an OS maintainer comes with new rights and new responsibilities; please be sure to read the maintainer's guidelines before to proceed.

    "; + echo "

    We ask that all maintainers explain why they want to be an OS maintainer,\n"; echo "why they think they will do a good job and a little about their experience\n"; echo "with Wine. This is both to give you time to\n"; - echo "think about whether you really want to be an application maintainer and also for the\n"; - echo "appdb admins to identify people that are best suited for the job. Your request\n"; - echo "may be denied if there are already a handful of maintainers for this application or if you\n"; + echo "think about whether you really want to be an OS maintainer and also for the\n"; + echo "OS DB admins to identify people that are best suited for the job. Your request\n"; + echo "may be denied if there are already a handful of maintainers for this OS or if you\n"; echo "don't have the experience with Wine that is necessary to help other users out.

    \n"; if(!$aClean['iVersionId']) { echo "

    Super maintainers are just like normal maintainers but they can modify EVERY version of\n"; - echo "this application (and the application itself). We don't expect you to run every version but at least to help keep\n"; + echo "this OS (and the OS itself). We don't expect you to run every version but at least to help keep\n"; echo "the forums clean of stale and out-of-date information.

    \n"; } @@ -742,7 +742,7 @@ class maintainer echo "
    Application VersionOS VersionSubmitterDate SubmittedWine versionQEMU versionInstalls?Runs?Rating
      Wine version "; + echo "
      QEMU version "; echo make_bugzilla_version_list("sWineRelease", isset($aClean['sWineRelease']) ? $aClean['sWineRelease'] : ''); echo "
    \n"; echo "',"\n"; if($aClean['iVersionId']) { @@ -757,9 +757,9 @@ class maintainer echo ""; if($iSuperMaintainer) - echo '',"\n"; + echo '',"\n"; else - echo '',"\n"; + echo '',"\n"; echo '
    "; - echo 'Application'.$oApp->sName; + echo 'OS'.$oApp->sName; echo '
    Why you want to and should
    be an application super maintainer
    Why you want to and should
    be an OS super maintainer
    Why you want to and should
    be an application maintainer
    Why you want to and should
    be an OS maintainer
    ',"\n"; } else @@ -828,7 +828,7 @@ class maintainer echo "\n"; // Show which other apps the user maintains - echo 'This user also maintains these apps:'; + echo 'This user also maintains these OSes:'; echo "
    iUserId}&sTitle=Maintained+Apps\">Detailed view"; echo '',"\n"; @@ -848,7 +848,7 @@ class maintainer } } else { - echo "User maintains no other applications"; + echo "User maintains no other OSes."; } echo "\n"; @@ -860,13 +860,13 @@ class maintainer echo "iVersionId."\">\n"; //app name - echo 'App Name:',"\n"; + echo 'OS Name:',"\n"; echo "".$oApp->objectMakeLink()."\n"; //version if($oVersion->iVersionId) { - echo 'App Version:',"\n"; + echo 'OS Version:',"\n"; echo "".$oVersion->objectMakeLink()."\n"; } @@ -1137,7 +1137,7 @@ class maintainer { $oApp = new Application($this->iAppId); $sSubject.= $oApp->sName; - $sMsg.='application, '.$oApp->sName.'('.$oApp->objectMakeUrl().'), that you maintain.'."\n\n"; + $sMsg.='OS, '.$oApp->sName.'('.$oApp->objectMakeUrl().'), that you maintain.'."\n\n"; } else { $sFullname = version::fullName($this->iVersionId); @@ -1182,7 +1182,7 @@ class maintainer // FIXME: should use a function to generate these urls and use it here and // in sidebar_maintainer.php and sidebar_admin.php $sMsg = 'Please visit the version queue ('.APPDB_ROOT."objectManager.php?sClass=version_queue&bIsQueue=true&sTitle=". - 'Version%20Queue) to process queued versions for applications you maintain.'."\n"; + 'Version%20Queue) to process queued versions for OSes you maintain.'."\n"; } ////////////////// @@ -1221,7 +1221,7 @@ class maintainer // FIXME: should use a function to generate these urls and use it here and // in sidebar_maintainer.php and sidebar_admin.php - $sMsg .= 'Please visit the AppDB Test Data Queue'. + $sMsg .= 'Please visit the OS DB Test Data Queue'. '('.APPDB_ROOT.'objectManager.php?sClass=testData_queue&'. 'bIsQueue=true&sTitle=Test%20Results%20Queue)'. ' to process queued test data for versions you maintain.'."\n"; @@ -1334,9 +1334,9 @@ class maintainer // we'll have to remove their maintainership for this application/version // so a more active person can fill the spot $oNotificationUpdate->sMsg.= "\nThis your second notification of queued entries."; - $oNotificationUpdate->sMsg.= " If the queued entries are not processsed within"; + $oNotificationUpdate->sMsg.= " If the queued entries are not processed within"; $oNotificationUpdate->sMsg.= " the next ".iNotificationIntervalDays. " days we will"; - $oNotificationUpdate->sMsg.= " remove your maintainership for this application/version"; + $oNotificationUpdate->sMsg.= " remove your maintainership for this OS/version"; $oNotificationUpdate->sMsg.= " so a more active person can fill the spot.". " It's important to process queued items in a timely manner". " to provide a good user experience."; @@ -1345,7 +1345,7 @@ class maintainer $oNotificationUpdate->sMsg.= "\nThis your third notification of queued entries."; $oNotificationUpdate->sMsg.= " Because your queued entries have not been processed"; $oNotificationUpdate->sMsg.= " after two notifications we are removing your maintainer"; - $oNotificationUpdate->sMsg.= " role for this application/version. Removing inactive"; + $oNotificationUpdate->sMsg.= " role for this OS/version. Removing inactive"; $oNotificationUpdate->sMsg.= " maintainers makes our job easier, since we want to know" ." not to wait for a maintainer to oversee submissions."; $oNotificationUpdate->sMsg.= " If you are still interested in being a maintainer please"; @@ -1356,8 +1356,8 @@ class maintainer // common end of our message $oNotificationUpdate->sMsg.= "\n\nThanks,\n"; - $oNotificationUpdate->sMsg.= "Appdb Admins\n"; - $oNotificationUpdate->sMsg.= ""; + $oNotificationUpdate->sMsg.= "OS Database Admins\n"; + $oNotificationUpdate->sMsg.= ""; // save the notification level and notification time back into the database $sQuery = "update appMaintainers set notificationLevel = '?', notificationTime = ?". diff --git a/include/maintainerView.php b/include/maintainerView.php index 90883be..7367f05 100644 --- a/include/maintainerView.php +++ b/include/maintainerView.php @@ -80,23 +80,23 @@ class maintainerView if(!$aMaintainedApps || !sizeof($aMaintainedApps)) { if($this->bViewingSelf) - echo '

    You do not maintain any apps

    '; + echo '

    You do not maintain any OSes

    '; else - echo "

    {$oUser->sRealname} does not maintain any apps

    "; + echo "

    {$oUser->sRealname} does not maintain any OSes

    "; return; } if($this->bViewingSelf) - echo '

    Viewing your maintained apps

    '; + echo '

    Viewing your maintained OSes:

    '; else - echo "

    Viewing {$oUser->sRealname}'s maintained apps

    "; + echo "

    Viewing {$oUser->sRealname}'s maintained OSes:

    "; $oTable = new Table(); $oTableRow = new TableRow(); $oTableRow->setClass('color4'); $oTable->setCellSpacing(0); $oTable->setCellPadding(3); - $oTableRow->AddTextCell('Application'); + $oTableRow->AddTextCell('OS'); $oTableRow->AddTextCell('Version'); $oTableRow->AddTextCell('Current Rating'); $oTableRow->AddTextCell('Current Version'); diff --git a/include/objectManager.php b/include/objectManager.php index e345020..c9c92b7 100644 --- a/include/objectManager.php +++ b/include/objectManager.php @@ -148,7 +148,7 @@ class ObjectManager "problem you have with this app, if there are not bugs filed already". " at http://bugs.winehq.org. If you want some advice or guidance on". " this, please visit http://forum.winehq.org"; - $this->aCommonResponses[] = "Please do not paste debug output in the AppDB,". + $this->aCommonResponses[] = "Please do not paste debug output in the OS DB,". " it belongs only as an attachment on bugzilla."; $this->aCommonResponses[] = "We appreciate your submission but it". " needs to be more detailed before it will be most useful to other users of". diff --git a/include/query.php b/include/query.php index 0c45496..8fd0b6a 100644 --- a/include/query.php +++ b/include/query.php @@ -155,7 +155,7 @@ function query_error($sQuery, $sComment, $hLink) "mysql_error(): '".mysql_error($hLink)."' ". "comment: '".$sComment."'"); - $sStatusMessage = "

    An internal error has occurred and has been logged and reported to appdb admins

    "; + $sStatusMessage = "

    An internal error has occurred and has been logged and reported to OS DB admins

    "; addmsg($sStatusMessage); $bInQueryError = false; // clear variable upon exit diff --git a/include/screenshot.php b/include/screenshot.php index a48b375..fc9878c 100644 --- a/include/screenshot.php +++ b/include/screenshot.php @@ -409,7 +409,7 @@ class screenshot $sMsg = "The screenshot you submitted for ".$sAppName." has been rejected."; } $sMsg .= $aClean['sReplyText']."\n"; - $sMsg .= "We appreciate your help in making the Application Database better for all users."; + $sMsg .= "We appreciate your help in making the Operating Systems Database better for all users."; mail_appdb($oSubmitter->sEmail, $sSubject ,$sMsg); } diff --git a/include/testData.php b/include/testData.php index 33661b1..a41122b 100644 --- a/include/testData.php +++ b/include/testData.php @@ -454,7 +454,7 @@ class testData{ break; } $sMsg .= $aClean['sReplyText']."\n"; - $sMsg .= "We appreciate your help in making the Application ". + $sMsg .= "We appreciate your help in making the Operating Systems ". "Database better for all users."; mail_appdb($oSubmitter->sEmail, $sSubject ,$sMsg); @@ -485,7 +485,7 @@ class testData{ } if($aClean['sReplyText']) { - $sMsg .= "Appdb admin reply text:\n"; + $sMsg .= "OS DB admin reply text:\n"; $sMsg .= $aClean['sReplyText']."\n"; // append the reply text, if there is any } addmsg("The test data was successfully added into the database.", "green"); @@ -550,7 +550,7 @@ class testData{ $oTableRowHeader->AddTextCell(""); $oTableRowHeader->AddTextCell("Distribution"); $oTableRowHeader->AddTextCell("Test date"); - $oTableRowHeader->AddTextCell("Wine version"); + $oTableRowHeader->AddTextCell("QEMU version"); $oTableRowHeader->AddTextCell("Installs?"); $oTableRowHeader->AddTextCell("Runs?"); $oTableRowHeader->AddTextCell("Rating"); @@ -915,13 +915,13 @@ class testData{ echo 'Tested release',"\n"; echo make_bugzilla_version_list("sTestedRelease", $this->sTestedRelease); // Give the user some information about our available versions - echo "Version not listed? Your Wine is too old, upgrade!"; + echo "Version not listed? Your QEMU is too old, upgrade!"; echo '',"\n"; // Installs echo 'Installs?',"\n"; testData::make_Installs_list("sInstalls", $this->sInstalls); - echo '  Installing is an important part of testing under Wine. Select N/A if there is no installer.',"\n"; + echo '  Installing is an important part of testing under QEMU. Select N/A if there is no installer.',"\n"; // Runs echo 'Runs?',"\n"; testData::make_Runs_list("sRuns", $this->sRuns); @@ -946,9 +946,9 @@ class testData{ if(getInput('bConfirmTestedVersionChange', $aClean) != 'true') { echo ' '; - echo 'You have changed the Wine version of the report. Are you sure you want to do this? Please submit a new test report for every Wine version you test; this is useful for tracking Wine\'s progress.
    '; + echo 'You have changed the QEMU version of the report. Are you sure you want to do this? Please submit a new test report for every QEMU version you test; this is useful for tracking QEMU\'s progress.
    '; echo ' '; - echo 'Yes, I want to change the Wine version'; + echo 'Yes, I want to change the QEMU version'; echo ''; } else { @@ -981,7 +981,7 @@ class testData{ $errors .= "
  • Please enter the date and time when you tested.
  • \n"; if (empty($aValues['sTestedRelease'])) - $errors .= "
  • Please enter the version of Wine that you tested with.
  • \n"; + $errors .= "
  • Please enter the version of QEMU that you tested with.
  • \n"; // Ask for confirmation if changing the tested Wine versions, becase we want users // to submit new reports instead of updating existing ones when testing new Wines @@ -989,8 +989,8 @@ class testData{ if($this->iTestingId && $oOldTest->sTestedRelease != getInput('sTestedRelease', $aValues) && getInput('bConfirmTestedVersionChange', $aValues) != 'true') { - $errors .= '
  • Are you sure you want to change the Wine version of the report? Please submit a new '. - 'test report for every Wine version you test; this is useful for tracking Wine\'s progress. '. + $errors .= '
  • Are you sure you want to change the QEMU version of the report? Please submit a new '. + 'test report for every QEMU version you test; this is useful for tracking QEMU\'s progress. '. 'Tick the box above the submit button if you want to proceed
  • '; } @@ -999,29 +999,29 @@ class testData{ $errors .= "
  • Please enter a distribution.
  • \n"; if (empty($aValues['sInstalls'])) - $errors .= "
  • Please enter whether this application installs or not.
  • \n"; + $errors .= "
  • Please enter whether this OS installs or not.
  • \n"; if (empty($aValues['sRuns'])) - $errors .= "
  • Please enter whether this application runs or not.
  • \n"; + $errors .= "
  • Please enter whether this OS runs or not.
  • \n"; if (empty($aValues['sTestedRating'])) - $errors .= "
  • Please enter a rating based on how well this application runs.
  • \n"; + $errors .= "
  • Please enter a rating based on how well this OS runs.
  • \n"; // Basic checking of rating logic to ensure that the users test results // are consistent if (($aValues['sRuns'] != "Yes") && ($aValues['sTestedRating'] != GARBAGE_RATING)) - $errors .= "
  • Applications that do not run should be rated ‘Garbage’.
  • \n"; + $errors .= "
  • OSes that do not run should be rated ‘Garbage’.
  • \n"; if (($aValues['sInstalls'] == "No") && ($aValues['sTestedRating'] == PLATINUM_RATING)) - $errors .= "
  • An application can only get a Platinum rating if it installs and runs ‘out of the box’.
  • \n"; + $errors .= "
  • An OS can only get a Platinum rating if it installs and runs ‘out of the box’.
  • \n"; // Basic checking of logic. Runs? can obviously only be 'Not Installable' // if the application does not install if (($aValues['sInstalls'] != "No") && ($aValues['sRuns'] == "Not installable")) - $errors .= "
  • You can only set Runs? to ‘Not installable’ if the application's installer does not work
  • \n"; + $errors .= "
  • You can only set Runs? to ‘Not installable’ if the OS's installer does not work
  • \n"; if (($aValues['sInstalls'] == "No") && ($aValues['sRuns'] != "Not installable")) - $errors .= "
  • You can only set Runs? to ‘Not installable’' if the application's installer does not work
  • \n"; + $errors .= "
  • You can only set Runs? to ‘Not installable’' if the OS's installer does not work
  • \n"; return $errors; @@ -1122,7 +1122,7 @@ class testData{ $oTableRow = new TableRow(); $oTableRow->AddTextCell('Version'); $oTableRow->AddTextCell('Rating'); - $oTableRow->AddTextCell('Wine version'); + $oTableRow->AddTextCell('QEMU version'); $oTableRow->AddTextCell('Submission date'); if($bQueued) @@ -1315,7 +1315,7 @@ class testData{ $oTableRow = new TableRow(); $oTableRow->AddTextCell("Submission Date"); $oTableRow->AddTextCell("Submitter"); - $oTableRow->AddTextCell("Application"); + $oTableRow->AddTextCell("OS"); $oTableRow->AddTextCell("Version"); $oTableRow->AddTextCell("Release"); $oTableRow->AddTextCell("Has maintainer"); @@ -1449,12 +1449,18 @@ class testData{ { echo "

    This is the screen for inputing test information so that others "; echo "looking at the database will know \n"; - echo "what was working on a particular release of Wine.

    \n"; - echo "

    Please DO NOT include crash or Wine debug output.\n"; - echo " Instead report the crash as a bug in the Wine bugzilla at \n"; - echo "http://bugs.winehq.org.\n"; + echo "what was working on a particular release of QEMU.

    \n"; + echo "

    Please DO NOT include crash or QEMU debug output.\n"; +/* + echo " Instead report the crash as a bug in the QEMU bugzilla at \n"; + echo "http://bugs.claunia.com.\n"; echo "We ask that you use bugzilla because developers do not monitor the AppDB \n"; echo "for bugs.

    \n"; +*/ + echo " Instead report the crash as a bug to the qemu-devel mailing list at \n"; + echo "qemu-devel@nongnu.org. We ask that you use the mailing list because \n"; + echo "developers do not monitor the OS DB for bugs.

    \n"; + echo "

    Please be as detailed as you can but do not paste large \n"; echo "chunks of output from the terminal. Type out your report \n"; echo "clearly and in proper English so that it is easily readable.

    \n"; diff --git a/include/url.php b/include/url.php index 0419168..6996d11 100644 --- a/include/url.php +++ b/include/url.php @@ -182,7 +182,7 @@ class Url { return false; $oAppBefore = new Application($this->iAppId); $oAppAfter = new Application($iAppId); - $sWhatChanged .= "Application was changed from ".$oAppBefore->sName." to ".$oAppAfter->sName.".\n\n"; + $sWhatChanged .= "OS was changed from ".$oAppBefore->sName." to ".$oAppAfter->sName.".\n\n"; $this->iAppId = $iAppId; } if($sWhatChanged && !$bSilent) @@ -209,7 +209,7 @@ class Url { $sMsg = "The url you submitted for ".$sAppName." has been rejected."; } $sMsg .= $aClean['sReplyText']."\n"; - $sMsg .= "We appreciate your help in making the Application Database better for all users."; + $sMsg .= "We appreciate your help in making the Operating Systems Database better for all users."; mail_appdb($oSubmitter->sEmail, $sSubject ,$sMsg); } diff --git a/include/user.php b/include/user.php index 73d47eb..531e866 100644 --- a/include/user.php +++ b/include/user.php @@ -425,13 +425,13 @@ class User { if($this->isMaintainer()) { $sSubject = "Warning: inactivity detected"; - $sMsg = "You didn't log in in the past six months to the AppDB.\r\n"; + $sMsg = "You didn't log in in the past six months to the OS DB.\r\n"; $sMsg .= "As a maintainer we would be pleased to see you once in a while.\r\n"; $sMsg .= "Please log in or you will lose your maintainer's abilities in one month.\r\n"; } else { $sSubject = "Warning: inactivity detected"; - $sMsg = "You didn't log in in the past six months to the AppDB.\r\n"; + $sMsg = "You didn't log in in the past six months to the OS DB.\r\n"; $sMsg .= "Please log in or your account will automatically be deleted in one month.\r\n"; } $sMsg .= APPDB_ROOT."account.php?sCmd=login\r\n"; diff --git a/include/version.php b/include/version.php index 60ea45c..876895a 100644 --- a/include/version.php +++ b/include/version.php @@ -219,7 +219,7 @@ class version { $this->iAppId, $this->sState, $this->iVersionId)) return false; - $sWhatChanged .= "Version was moved from application ".$oAppBefore->sName." to application ".$oAppAfter->sName.".\n\n"; + $sWhatChanged .= "Version was moved from OS ".$oAppBefore->sName." to OS ".$oAppAfter->sName.".\n\n"; } if ($this->sLicense && ($this->sLicense!=$oVersion->sLicense)) @@ -476,14 +476,14 @@ class version { $sSubject = "Submitted version rejected"; $sMsg = "The version you submitted (".$oApp->sName." ".$this->sName.") has been rejected by ".$_SESSION['current']->sRealname."."; $sMsg .= "Clicking on the link in this email will allow you to modify and resubmit the version. "; - $sMsg .= "A link to your queue of applications and versions will also show up on the left hand side of the Appdb site once you have logged in. "; + $sMsg .= "A link to your queue of OSes and versions will also show up on the left hand side of the OS DB site once you have logged in. "; $sMsg .= APPDB_ROOT."objectManager.php?sClass=version_queue". "&bIsQueue=true&bIsRejected=true&iId=".$this->iVersionId."&". "sTitle=Edit+Version\n"; break; } $sMsg .= $aClean['sReplyText']."\n"; - $sMsg .= "We appreciate your help in making the Version Database better for all users."; + $sMsg .= "We appreciate your help in making the Application Database better for all users."; mail_appdb($oSubmitter->sEmail, $sSubject ,$sMsg); } @@ -513,7 +513,7 @@ class version { } if($aClean['sReplyText']) { - $sMsg .= "Appdb admin reply text:\n"; + $sMsg .= "OS DB admin reply text:\n"; $sMsg .= $aClean['sReplyText']."\n"; // append the reply text, if there is any } @@ -634,7 +634,7 @@ class version { $oTableRow = new TableRow(); $oTableRow->SetValign("top"); - $oTableCell = new TableCell("Application"); + $oTableCell = new TableCell("OS"); $oTableCell->SetBold(true); $oTableRow->AddCell($oTableCell); @@ -744,7 +744,7 @@ class version { $errors = ""; if (empty($aValues['sVersionName'])) - $errors .= "
  • Please enter an application version.
  • \n"; + $errors .= "
  • Please enter an OS version.
  • \n"; if (empty($aValues['shVersionDescription'])) $errors .= "
  • Please enter a version description.
  • \n"; @@ -1161,7 +1161,7 @@ class version { echo html_note('No Test Results', 'This version has no test results, please consider submitting some.
    '. 'They may be part of the '. - 'version or application description. If they are, please '. + 'version or OS description. If they are, please '. 'consider becoming a maintainer and remove them, submitting '. 'a proper test report instead.'); } @@ -1653,7 +1653,7 @@ class version { $oTableRow->AddTextCell("Submission Date"); $oTableRow->AddTextCell("Submitter"); $oTableRow->AddTextCell("Developer"); - $oTableRow->AddTextCell("Application"); + $oTableRow->AddTextCell("OS"); $oTableRow->AddTextCell("Version"); $oTableRow->AddTextCell("Has Maintainer"); return $oTableRow; diff --git a/include/version_queue.php b/include/version_queue.php index 6dd5fe5..4ca0fb8 100644 --- a/include/version_queue.php +++ b/include/version_queue.php @@ -300,7 +300,7 @@ class version_queue array("Version", 'width="80"'), "Description", array("Rating", 'width="80"'), - array("Wine version", 'width="80"'), + array("QEMU version", 'width="80"'), array("Comments", 'width="40"'), array("Move test results", 'width="80"') ), diff --git a/index.php b/index.php index 9d8276a..52692f6 100644 --- a/index.php +++ b/index.php @@ -87,7 +87,7 @@ if(!$_SESSION['current']->isLoggedIn())
    - Top-10 Platinum List + Top-10 Platinum List
    Operating systems which install and run flawlessly on QEMU with any hardware combination tested.
    @@ -107,7 +107,7 @@ if(!$_SESSION['current']->isLoggedIn())
    - Top-10 Gold List + Top-10 Gold List
    Operating systems that work flawlessly with some special configuration
    @@ -127,7 +127,7 @@ if(!$_SESSION['current']->isLoggedIn())
    - Top-10 Silver List + Top-10 Silver List
    Operating systems with minor issues that do not affect typical usage
    diff --git a/scripts.js b/scripts.js index 524489d..f17ae34 100644 --- a/scripts.js +++ b/scripts.js @@ -71,10 +71,10 @@ function showComment(commentid) var ratingdesc=[ "", " Works flawlessly out of the box - no problems ", - " Works flawlessly with DLL overrides, third party software or other settings ", - " Works excellently for normal use;works fine in singleplayer but not multi ", + " Works flawlessly with workarounds or other settings ", + " Works excellently for normal use ", " Works but has issues for normal use ", - " Does not run or cannot be installed with Wine " + " Does not run or cannot be installed with QEMU " ]; var ratingstyle =[ "", @@ -92,7 +92,7 @@ function showHint(o){ $('hint').addClassName(ratingstyle[o.selectedIndex]); } } -/* too many people still call Wine "WINE" */ +/* too many people still call QEMU "Qemu" */ function bind_tolowerWINE() { [ @@ -111,7 +111,7 @@ function bind_tolowerWINE() } function tolowerWINE(o) { - o.element().value = o.element().value.replace(/WINE([^A-Z]+)|(WINE)$/g,"Wine$1"); + o.element().value = o.element().value.replace(/Qemu([^A-Z]+)|(Qemu)$/g,"QEMU$1"); } /* executed when document is ready */ document.observe("dom:loaded", function() { diff --git a/site_outage.html b/site_outage.html index ec74e8c..6cbab0e 100644 --- a/site_outage.html +++ b/site_outage.html @@ -1,12 +1,12 @@ -AppDB temporarily offline +OS DB temporarily offline -

    Wine Application Database

    -

    Sorry, the AppDB is temporarily offline

    +

    QEMU Official OS Support List

    +

    Sorry, the OS DB is temporarily offline

    While we are down you might want to checkout the main -WineHQ site

    +QEMU site