2010/02/02 03:15:57 +0000 claunia: Cleanup some application references. Still lot to check out.
This commit is contained in:
@@ -27,7 +27,7 @@ if(!$hResult || !query_num_rows($hResult))
|
||||
{
|
||||
// no apps
|
||||
echo html_frame_start("","90%");
|
||||
echo '<p><b>There are no application maintainers.</b></p>',"\n";
|
||||
echo '<p><b>There are no operating system maintainers.</b></p>',"\n";
|
||||
echo html_frame_end(" ");
|
||||
}
|
||||
else
|
||||
@@ -41,7 +41,7 @@ else
|
||||
echo "<tr class=color4>\n";
|
||||
echo " <td><font color=white>Submission Date</font></td>\n";
|
||||
echo " <td><font color=white>Maintainer</font></td>\n";
|
||||
echo " <td><font color=white>Application</font></td>\n";
|
||||
echo " <td><font color=white>Operating System</font></td>\n";
|
||||
echo " <td><font color=white>Version</font></td>\n";
|
||||
echo " <td align=\"center\">Action</td>\n";
|
||||
echo "</tr>\n\n";
|
||||
|
||||
@@ -32,12 +32,12 @@ else
|
||||
|
||||
if(!$oApp)
|
||||
{
|
||||
util_show_error_page_and_exit('Application does not exist');
|
||||
util_show_error_page_and_exit('Operating system does not exist');
|
||||
}
|
||||
|
||||
if($_SESSION['current']->showDebuggingInfos()) { echo "<p align=center><b>appName:</b> $oApp->sName </p>"; }
|
||||
|
||||
apidb_header("Edit Application Family");
|
||||
apidb_header("Edit Operating System Family");
|
||||
|
||||
echo "<form method=\"post\" action=\"editAppFamily.php\">\n";
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ if(!empty($aClean['sSubmit']))
|
||||
|
||||
$oVersion = new Version($aClean['iVersionId']);
|
||||
|
||||
apidb_header("Edit Application Version");
|
||||
apidb_header("Edit Operating System Version");
|
||||
|
||||
echo "<div class='default_container'>\n";
|
||||
|
||||
|
||||
@@ -25,9 +25,9 @@ if($aClean['sCmd'])
|
||||
$hResult = query_parameters("DELETE FROM appBundle WHERE appId ='?' AND bundleId = '?'",
|
||||
$aClean['iAppId'], $aClean['iBundleId']);
|
||||
if($hResult)
|
||||
addmsg("App deleted from bundle", "green");
|
||||
addmsg("OS deleted from bundle", "green");
|
||||
else
|
||||
addmsg("Failed to delete app from bundle!", "red");
|
||||
addmsg("Failed to delete OS from bundle!", "red");
|
||||
}
|
||||
if($aClean['sCmd'] == "add")
|
||||
{
|
||||
@@ -36,22 +36,22 @@ if($aClean['sCmd'])
|
||||
$aClean['iBundleId'],
|
||||
$aClean['iAppId']);
|
||||
if($hResult)
|
||||
addmsg("App $appId added to Bundle".$aClean['iBundleId'], "green");
|
||||
addmsg("OS $appId added to Bundle".$aClean['iBundleId'], "green");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
apidb_header("Edit Application Bundle");
|
||||
apidb_header("Edit Operating System Bundle");
|
||||
|
||||
$hResult = query_parameters("SELECT bundleId, appBundle.appId, appName FROM appBundle, appFamily ".
|
||||
"WHERE bundleId = '?' AND appFamily.appId = appBundle.appId",
|
||||
$aClean['iBundleId']);
|
||||
|
||||
echo html_frame_start("Apps in this Bundle","300",'',0);
|
||||
echo html_frame_start("OSes in this Bundle","300",'',0);
|
||||
echo "<table width='100%' border=0 cellpadding=3 cellspacing=0>\n\n";
|
||||
|
||||
echo "<tr class=color4>\n";
|
||||
echo " <td><font color=white> Application Name </font></td>\n";
|
||||
echo " <td><font color=white> Operating System Name </font></td>\n";
|
||||
echo " <td><font color=white> Delete </font></td>\n";
|
||||
echo "</tr>\n\n";
|
||||
|
||||
@@ -76,7 +76,7 @@ if($hResult && query_num_rows($hResult))
|
||||
{
|
||||
/* indicate to the user that there are no apps in this bundle at the moment */
|
||||
echo "<tr>\n";
|
||||
echo " <td colspan=2 align=center><b>No applications in this bundle</b></td>\n";
|
||||
echo " <td colspan=2 align=center><b>No operating systems in this bundle</b></td>\n";
|
||||
echo "</tr>\n";
|
||||
}
|
||||
|
||||
@@ -85,7 +85,7 @@ echo html_frame_end();
|
||||
|
||||
echo "<form method=post action=editBundle.php>\n";
|
||||
|
||||
echo html_frame_start("Application List (double click to add)","",'',2);
|
||||
echo html_frame_start("Operating System List (double click to add)","",'',2);
|
||||
build_app_list();
|
||||
echo html_frame_end();
|
||||
|
||||
|
||||
@@ -12,6 +12,6 @@ require(BASE."include/"."incl.php");
|
||||
|
||||
$iId = getInput('iCatId', $aClean);
|
||||
|
||||
util_redirect_and_exit(BASE."objectManager.php?sClass=category&iId=$iId&sAction=view&sTitle=Browse+Applications");
|
||||
util_redirect_and_exit(BASE."objectManager.php?sClass=category&iId=$iId&sAction=view&sTitle=Browse+Operating+Systems");
|
||||
|
||||
?>
|
||||
|
||||
@@ -27,27 +27,16 @@ developers.</p>
|
||||
|
||||
<p><b>Q: What is QEMU?</b></p>
|
||||
<blockquote>
|
||||
<p><b>A:</b>Think of Wine as a Windows compatibility layer. Wine does not require
|
||||
Microsoft Windows, as it is a completely alternative implementation
|
||||
consisting of 100% Microsoft-free code, but it can optionally use
|
||||
native system DLLs if they are available. Wine provides both a development
|
||||
toolkit (Winelib) for porting Windows sources to Unix and a program loader,
|
||||
allowing many unmodified Windows binaries to run on x86-based Unixes, including
|
||||
<a href="http://www.linux.org/">Linux</a>,
|
||||
<a href="http://www.freebsd.org/">FreeBSD</a>, and
|
||||
<a href="http://wwws.sun.com/software/solaris/">Solaris</a>.</p>
|
||||
|
||||
<p>More information can be found at the
|
||||
<a href="http://www.winehq.org/site/docs/wine-faq/index" style="cursor: help">Wine FAQ</a>.<p>
|
||||
</blockquote>
|
||||
|
||||
<p><b>Q: What are the benefits of this Application Database?</b></p>
|
||||
<blockquote>
|
||||
<p><b>A:</b> QEMU is a generic and open source machine emulator and virtualizer.<br>
|
||||
<p><b>A:</b>QEMU is a generic and open source machine emulator and virtualizer.<br>
|
||||
When used as a machine emulator, QEMU can run OSes and programs made for one machine (e.g. an ARM board) on a different machine (e.g. your own PC). By using dynamic translation, it achieves very good performances.<br>
|
||||
When used as a virtualizer, QEMU achieves near native performances by executing the guest code directly on the host CPU. QEMU supports virtualization when executing under the Xen hypervisor or using the KVM kernel module in Linux. When using KVM, QEMU can virtualize x86, server and embedded PowerPC, and S390 guests.<p>
|
||||
</blockquote>
|
||||
|
||||
<p><b>Q: What are the benefits of this Operating Systems Database?</b></p>
|
||||
<blockquote>
|
||||
<p><b>A:</b>This database lets developers and users to know what operating systems work in QEMU, to insert or read HOW-TOs, check screenshots, and detect regressions.<p>
|
||||
</blockquote>
|
||||
|
||||
<p><b>Q: How does a new operating system get added to the database?</b></p>
|
||||
<blockquote>
|
||||
<p><b>A:</b> Any registered user can submit an application. Use the <a href="../objectManager.php?sClass=application_queue&sTitle=Submit+Application&sAction=add">Submit OS</a> link in the OS DB sidebar to add an entry; it will be processed by an admin before becoming visible to all users. You can make changes to your queued entries by visiting the <a href="../queueditems.php">Your Queued Items</a> page.</p>
|
||||
|
||||
@@ -9,7 +9,7 @@ Information on what a maintainer is and why they are important to the os db.
|
||||
<p>
|
||||
Maintainers are privileged users who have the ability to administrate operating systems and versions. Maintainers typically use the
|
||||
operating systems and versions they maintain on a weekely or monthly basis and test them with each new version of QEMU that is
|
||||
released. They also respond to forum posts for their applications/versions and review and process test results and
|
||||
released. They also respond to forum posts for their oses/versions and review and process test results and
|
||||
screenshots that users submit. Please see the <a href="./?sTopic=maintainer_guidelines" style="cursor: help">maintainer's guidelines</a>
|
||||
for more information on the kinds of things a maintainer has stewardship over.
|
||||
<p>
|
||||
|
||||
@@ -22,7 +22,7 @@ You are expected to:
|
||||
You will:
|
||||
<ul>
|
||||
<li>Receive an email when a comment is posted or deleted for the operating system or the operating system information is modified</li>
|
||||
<li>Be able to modify all aspects of your application(s) and version(s), including the description, screenshots, HOWTOs, notes, comments, etc.</li>
|
||||
<li>Be able to modify all aspects of your operating system(s) and version(s), including the description, screenshots, HOWTOs, notes, comments, etc.</li>
|
||||
</ul>
|
||||
|
||||
<br>
|
||||
|
||||
@@ -31,7 +31,7 @@ you would MOST like to see running in QEMU.
|
||||
community. Don't vote for operating systems that are known to be working well.
|
||||
We know MS-DOS works. Voting for it would not make much sense.</li>
|
||||
|
||||
<li>You can clear your vote at any time. Browse to any application
|
||||
<li>You can clear your vote at any time. Browse to any operating system
|
||||
version, select ‘Vote’ from the table showing name, license, rating etc., then choose the slots you wish to clear and press ‘Delete’.</p></li>
|
||||
|
||||
</ul>
|
||||
|
||||
Reference in New Issue
Block a user