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

« back to all changes in this revision

Viewing changes to doc/download_info.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
 
require_once("docutil.php");
3
 
page_head("Specialized download pages");
4
 
echo "
5
 
Some sites may want versions of the BOINC download page
6
 
that show only particular versions or platforms.
7
 
This can be done by adding parameters to the
8
 
http://boinc.berkeley.edu/download_all.php URL.
9
 
";
10
 
list_start();
11
 
list_item("dev=1", "Show versions that are still under test");
12
 
list_item("min_version=x", "Show no versions earlier than x");
13
 
list_item("max_version=x", "Show no versions later than x");
14
 
list_item("version=x", "Show version x");
15
 
list_item("platform=x", "Show versions for platform x (win/mac/linux/solaris)");
16
 
list_item("xml=1", "Show results as XML (other options are ignored).");
17
 
list_end();
18
 
echo "
19
 
For example:
20
 
<a href=http://boinc.berkeley.edu/download_all.php?min_version=5.0&dev=1>http://boinc.berkeley.edu/download.php?min_version=5.0&dev=1</a>
21
 
shows only versions 5.0 and later, include test versions.
22
 
";
23
 
page_tail();
24
 
?>