~ubuntu-branches/ubuntu/lucid/boinc/lucid

« back to all changes in this revision

Viewing changes to doc/system_requirements.php

  • Committer: Bazaar Package Importer
  • Author(s): Frank S. Thomas, Frank S. Thomas
  • Date: 2008-05-31 08:02:47 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080531080247-4ce890lp2rc768cr
Tags: 6.2.7-1
[ Frank S. Thomas ]
* New upstream release.
  - BOINC Manager: Redraw disk usage charts immediately after connecting to
    a (different) client. (closes: 463823)
* debian/copyright:
  - Added the instructions from debian/README.Debian-source about how
    repackaged BOINC tarballs can be reproduced because DevRef now
    recommends to put this here instead of in the afore-mentioned file.
  - Updated for the new release.
* Removed the obsolete debian/README.Debian-source.
* For consistency upstream renamed the core client and the command tool
  ("boinc_client" to "boinc" and "boinc_cmd" to "boinccmd"). Done the same
  in all packages and created symlinks with the old names for the binaries
  and man pages. Also added an entry in debian/boinc-client.NEWS explaining
  this change.
* debian/rules: Do not list Makefile.ins in the clean target individually,
  just remove all that can be found.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
 
3
 
require_once("docutil.php");
4
 
require_once("../html/inc/translation.inc");
5
 
 
6
 
page_head(tr(SRQ_PAGE_TITLE));
7
 
 
8
 
echo "
9
 
<b>".tr(SRQ_INTRO)."</b>
10
 
 
11
 
<hr>
12
 
 
13
 
<h2>".tr(SRQ_MSWIN)."<h2>
14
 
<h4>".tr(SRQ_OS)."</h4>
15
 
<ul>
16
 
<li> ".tr(SRQ_MSWIN_REQ_OS)."
17
 
</ul>
18
 
<h4>".tr(SRQ_MIN_HARDWARE)."</h4>
19
 
<ul>
20
 
<li> ".tr(SRQ_MSWIN_REQ_CPU)."
21
 
<li> ".tr(SRQ_MSWIN_REQ_RAM)."
22
 
<li> ".tr(SRQ_MSWIN_REQ_DISK)."
23
 
 </ul>
24
 
 
25
 
 
26
 
<hr>
27
 
<h2>".tr(SRQ_APPLMAC)."</h2>
28
 
<h4>".tr(SRQ_OS)."</h4>
29
 
<ul>
30
 
<li> ".tr(SRQ_APPLMAC_REQ_OS)."
31
 
</ul>
32
 
<h4>".tr(SRQ_MIN_HARDWARE)."</h4>
33
 
<ul>
34
 
<li> ".tr(SRQ_APPLMAC_REQ_CPU)."
35
 
<li> ".tr(SRQ_APPLMAC_REQ_RAM)."
36
 
<li> ".tr(SRQ_APPLMAC_REQ_DISK)."
37
 
</ul>
38
 
 
39
 
<hr>
40
 
<h2>".tr(SRQ_LINUX)."</h2>
41
 
<h4>".tr(SRQ_OS)."</h4>
42
 
<ul>
43
 
<li> ".tr(SRQ_LINUX_REQ_KERNEL)."
44
 
<li> ".tr(SRQ_LINUX_REQ_GLIBC)."
45
 
<li> ".tr(SRQ_LINUX_REQ_XFREE86)."
46
 
<li> ".tr(SRQ_LINUX_REQ_GTKPLUS)."
47
 
</ul>
48
 
<h4>".tr(SRQ_MIN_HARDWARE)."</h4>
49
 
<ul>
50
 
<li> ".tr(SRQ_LINUX_REQ_CPU)."
51
 
<li> ".tr(SRQ_LINUX_REQ_RAM)."
52
 
<li> ".tr(SRQ_LINUX_REQ_DISK)."
53
 
</ul>
54
 
";
55
 
 
56
 
page_tail(true);
57
 
 
58
 
?>
59