Changes between Version 2 and Version 3 of PayPalDonations


Ignore:
Timestamp:
Jun 1, 2007, 9:36:47 AM (17 years ago)
Author:
Nicolas
Comment:

Tweaked formatting. Changed link to donations.inc to use a source Trac link

Legend:

Unmodified
Added
Removed
Modified
  • PayPalDonations

    v2 v3  
    22
    33BOINC offers a donation system based on [http://www.paypal.com PayPal]. It is disabled by default; to enable it, add the following code to your `project/project.inc` file:
    4 
    5     define("PAYPAL_ADDRESS", "paypal@example.com");[[BR]]
    6     define("DONATION_CURRENCY", "EUR");
    7 
     4{{{
     5define("PAYPAL_ADDRESS", "paypal@example.com");
     6define("DONATION_CURRENCY", "EUR");
     7}}}
    88 '''PAYPAL_ADDRESS'''::
    99        Email address, associated with !PayPal account that will receive money
     
    1717It should be clearly stated where donation money is going to be used; therefore, a function named `donations_intro()` should be defined in `project/project.inc` file. It should use PHP ''echo()'' command to display generic information about donations.
    1818
    19 Once the donation system has been enabled, a link to BASE_URL/donations.php should be added to project front page. In addition, BOINC forum software expects a file `project/donations.inc` to be present, containing settings for donation link display. An [http://boinc.berkeley.edu/trac/browser/trunk/boinc/html/project.sample/donations.inc example file is provided] in the project.sample directory.
     19Once the donation system has been enabled, a link to BASE_URL/donations.php should be added to project front page. In addition, BOINC forum software expects a file `project/donations.inc` to be present, containing settings for donation link display. An [source:trunk/boinc/html/project.sample/donations.inc example file is provided] in the project.sample directory.