Changes between Initial Version and Version 1 of SourceCodeSvn


Ignore:
Timestamp:
Apr 25, 2007, 12:54:57 PM (17 years ago)
Author:
Nicolas
Comment:

Converted by an automatic script

Legend:

Unmodified
Added
Removed
Modified
  • SourceCodeSvn

    v1 v1  
     1= Getting source code =
     2
     3
     4== SVN modules ==
     5  The BOINC source code consists of two directories:
     6 * '''boinc''' contains the source code for all parts of BOINC itself (client, server, web, database).
     7 * '''boinc_samples''' contains [ExampleApps several example applications] together with Windows and Mac project files and a Linux makefile for building the applications. It also includes Windows versions of some libraries (GLUT, jpeglib, etc.) that many applications will need, but which are not part of BOINC. Check out this module in the same parent directory as '''boinc'''.
     8
     9 The modules are accessible as follows:
     10{{{
     11svn co http://boinc.berkeley.edu/svn/trunk/boinc
     12svn co http://boinc.berkeley.edu/svn/trunk/boinc_samples
     13}}}
     14 On Windows, get a SVN client like Tortoise SVN. Right-click on the parent directory, select 'SVN checkout', and fill in the dialog with the above URL.
     15
     16
     17== Browsing source code via the web ==
     18 You can browse the boinc or boinc_samples code via [http://boinc.berkeley.edu/trac/ a web-based interface]. This is useful for getting individual files, or seeing the revision history.
     19
     20
     21== Source code road map ==
     22 The BOINC source tree includes the following directories:
     23
     24
     25
     26 '''api'''::
     27        The BOINC API (for applications)
     28 '''apps'''::
     29        Some test applications.
     30 '''client'''::
     31        The BOINC core client.
     32 '''clientgui'''::
     33        The BOINC Manager.
     34 '''db'''::
     35        The database schema and C++ interface layer.
     36 '''doc'''::
     37        BOINC documentation (PHP web pages).
     38 '''html/ops'''::
     39        PHP files for the operational web interface.
     40 '''html/user'''::
     41        PHP files for the participant web interface.
     42 '''html/inc'''::
     43        PHP include files.
     44 '''html/languages'''::
     45        Translation files.
     46 '''lib'''::
     47        Code that is shared by more than one component     (core client, scheduling server, etc.).
     48 '''py'''::
     49        Python modules used by tools.
     50 '''sched'''::
     51        The scheduling server, feeder, and file upload handler.
     52 '''test'''::
     53        Test scripts.
     54 '''tools'''::
     55        Operational utility programs.
     56 '''zip'''::
     57        Compression functions; not used by BOINC,     but may be useful for applications.
     58
     59
     60
     61== SVN tags ==
     62 '''We maintain tags for the client software (core client and manager)
     63in the boinc module.
     64For other parts of the software (e.g., server and API),
     65use the current version.
     66'''
     67
     68 stable::
     69        The latest publicly-released version of the client software, generally well-tested. '''DO NOT USE THE STABLE VERSION OF SERVER AND API SOFTWARE.
     70IF YOU DO, IT MAY BE FAR OUT OF DATE.
     71USE THE CURRENT VERSION INSTEAD.'''
     72 staging::
     73        The version currently being alpha-tested (so at least it compiles).
     74 boinc_core_release_x_y_z::
     75        The source code for version x.y.z.
     76 To check out a branch (for example, boinc_core_release_5_8a) use the following URL:
     77{{{
     78http://boinc.berkeley.edu/svn/branches/boinc_core_release_5_8/boinc
     79}}}